diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-08 06:55:46 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-08 07:00:31 +0300 |
commit | a61b79b1521cb5ce08c213ac3ab45db072fbda2f (patch) | |
tree | a21dd19c5322e00092c677c0a79f6e6c2154624f /.travis | |
parent | add AppVeyor config (diff) | |
download | math-server-a61b79b1521cb5ce08c213ac3ab45db072fbda2f.tar.gz math-server-a61b79b1521cb5ce08c213ac3ab45db072fbda2f.zip |
enable tests in CI builds
Diffstat (limited to '.travis')
-rwxr-xr-x | .travis/build.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis/build.sh b/.travis/build.sh index f3ad8c8..2e721f3 100755 --- a/.travis/build.sh +++ b/.travis/build.sh @@ -17,8 +17,10 @@ main() { -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 + ./test/unit_tests/unit_tests --log_level=all } main |