blob: 89e0329a43c9595ecf0ab27b9e33e490c018e2c9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
language: cpp
os: linux
dist: bionic
env:
global:
- travis_boost_version=1.71.0
matrix:
- configuration=Debug platform=x64
- configuration=Release platform=x64
before_script:
- ./cmake/build/boost/build_travis.sh --with-filesystem --with-program_options --with-test
script:
- |-
./cmake/build/build_travis.py \
--configuration "$configuration" \
--install "$HOME/install" \
--boost "$HOME/boost_1_71_0" \
--boost-librarydir "$HOME/boost_1_71_0/stage/$platform/${configuration,,}/lib" \
-- -DENABLE_TESTS=ON
- "$HOME/install/bin/test/unit_tests"
|