blob: e0a4778c713548ca9c3bd6cac0b272a8d2290c05 (
plain) (
tree)
|
|
# Linux builds are only to make sure the project can be built w/ MinGW-w64 &
# GCC.
language: cpp
os: linux
dist: focal
env:
global:
- boost_version=1.72.0
jobs:
# Building only Debug is fine, it's not going anywhere anyway:
- configuration=Debug platform=x86
- configuration=Debug platform=x64
#- configuration=Release platform=x86
#- configuration=Release platform=x64
jobs:
fast_finish: true
before_script:
- cd cmake
- >-
python3 -m project.ci.travis.boost
--mingw
--
--with-filesystem
--with-program_options
--with-system
script:
- >-
python3 -m project.ci.travis.cmake
--install "$HOME/install"
--mingw
|