aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.travis.yml23
1 files changed, 14 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml
index 7987056..cdf7b9a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -22,16 +22,21 @@ env:
- configuration=Release platform=x64
before_script:
- - ./cmake/ci/boost/build_travis.py -- link=static --with-filesystem --with-program_options --with-regex --with-test
+ - >-
+ ./cmake/boost/build/ci/travis.py
+ --link static
+ --
+ --with-filesystem --with-program_options --with-regex --with-test
script:
- - |-
- ./cmake/ci/build_travis.py \
- --install "$HOME/install" \
- -- \
- -D "CMAKE_TOOLCHAIN_FILE=cmake/toolchains/gcc-$platform.cmake" \
- -D "BOOST_ROOT=$HOME/boost_1_71_0" \
- -D "BOOST_LIBRARYDIR=$HOME/boost_1_71_0/stage/$platform/$configuration/lib" \
- -D ENABLE_TESTS=ON
+ - >-
+ ./cmake/cmake/build/ci/travis.py
+ --install "$HOME/install"
+ --
+ -D "CMAKE_TOOLCHAIN_FILE=cmake/cmake/toolchains/gcc-$platform.cmake"
+ -D "BOOST_ROOT=$HOME/boost_1_71_0"
+ -D "BOOST_LIBRARYDIR=$HOME/boost_1_71_0/stage/$platform/$configuration/lib"
+ -D ENABLE_TESTS=ON
+
- "$HOME/install/bin/math-server-unit-tests"
- "$HOME/install/bin/math-server-benchmarks"