aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2019-12-13 05:44:37 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2019-12-13 06:50:03 +0300
commitdfbedf7aa3366fa3b8799a43755c783565e22537 (patch)
tree3cb881438bbb1c131c0854e9575adf979df10cef /.travis.yml
parentrename executables (diff)
downloadmath-server-dfbedf7aa3366fa3b8799a43755c783565e22537.tar.gz
math-server-dfbedf7aa3366fa3b8799a43755c783565e22537.zip
Travis: switch to boost/build.py
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index b1f6b8c..f79910c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,15 +18,16 @@ env:
- configuration=Release platform=x64
before_script:
- - ./cmake/build/boost/build_travis.sh --with-filesystem --with-program_options --with-test
+ - ./cmake/ci/boost/build_travis.py --with filesystem program_options test --link=static
script:
- |-
- ./cmake/build/build_travis.py \
+ ./cmake/ci/build_travis.py \
--configuration "$configuration" \
--install "$HOME/install" \
--toolchain ./cmake/toolchains/gcc-$platform.cmake \
--boost "$HOME/boost_1_71_0" \
--boost-librarydir "$HOME/boost_1_71_0/stage/$platform/${configuration,,}/lib" \
- -- -DENABLE_TESTS=ON
+ -- \
+ -DENABLE_TESTS=ON
- "$HOME/install/bin/math-server-unit-tests"