Commit d951ea32 authored by gabime's avatar gabime

travis improvments

parent da30e2ef
......@@ -76,12 +76,6 @@ matrix:
before_install:
- if [ -n "$GCC_VERSION" ]; then export CXX="g++-${GCC_VERSION}" CC="gcc-${GCC_VERSION}"; fi
- if [ -n "$CLANG_VERSION" ]; then export CXX="clang++-${CLANG_VERSION}" CC="clang-${CLANG_VERSION}"; fi
- which $CXX
- which $CC
- which valgrind
- $CXX --version
- cmake --version
- valgrind --version
install:
- cd ${TRAVIS_BUILD_DIR}
......@@ -92,12 +86,20 @@ install:
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
-DCMAKE_CXX_STANDARD=$CPP \
-DSPDLOG_BUILD_EXAMPLES=ON \
-DSPDLOG_BUILD_BENCH=OFF \
-DSPDLOG_SANITIZE_ADDRESS=$ASAN
- make VERBOSE=1-j2
- make VERBOSE=1 -j2
before_script:
- which $CXX
- which $CC
- which valgrind
- $CXX --version
- cmake --version
- valgrind --version
script:
- if [ "$ASAN" != "On" ]; then CTEST_FLAGS="-DExperimentalMemCheck"; fi
- ctest -j2 -VV $CTEST_FLAGS
script:
- ctest -j2 --output-on-failure
notifications:
email: false
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment