aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.travis
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2019-12-09 04:15:33 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2019-12-09 04:15:33 +0300
commit72f488790b388b5b4cbab9d683e1b096b6f817c1 (patch)
tree57c56978c45c7c6d6f80309878630ead39d56120 /.travis
parentset minimum CMake version (diff)
downloadmath-server-72f488790b388b5b4cbab9d683e1b096b6f817c1.tar.gz
math-server-72f488790b388b5b4cbab9d683e1b096b6f817c1.zip
AppVeyor/Travis: remove options also present in common.cmake
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/build.sh1
-rwxr-xr-x.travis/build_boost.sh14
2 files changed, 7 insertions, 8 deletions
diff --git a/.travis/build.sh b/.travis/build.sh
index 2e721f3..5c86ac0 100755
--- a/.travis/build.sh
+++ b/.travis/build.sh
@@ -16,7 +16,6 @@ main() {
-D "CMAKE_CXX_STANDARD_LIBRARIES=-lpthread" \
-D "BOOST_ROOT=$boost_dir" \
-D "BOOST_LIBRARYDIR=$boost_librarydir" \
- -D Boost_USE_STATIC_LIBS=ON \
-D ENABLE_TESTS=ON \
"$TRAVIS_BUILD_DIR"
cmake --build . -- -j
diff --git a/.travis/build_boost.sh b/.travis/build_boost.sh
index 9c757a5..94869ef 100755
--- a/.travis/build_boost.sh
+++ b/.travis/build_boost.sh
@@ -29,13 +29,13 @@ bootstrap() {
build() {
trap clean RETURN
cd -- "$boost_dir"
- ./b2 \
- "address-model=$address_model" \
- link=static \
- variant="$build_type" \
- "--stagedir=stage/$arch/$build_type" \
- --with-filesystem \
- --with-program_options \
+ ./b2 \
+ "address-model=$address_model" \
+ link=static \
+ variant="$build_type" \
+ "--stagedir=stage/$arch/$build_type" \
+ --with-filesystem \
+ --with-program_options \
--with-test
}