From 1471e1f6104716638462629329fe3265a0bf1f4b Mon Sep 17 00:00:00 2001 From: Denis Blank Date: Tue, 3 Oct 2017 20:25:13 +0200 Subject: [PATCH] Use 2 processes in travis-ci --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index aa26fec..351c449 100644 --- a/.travis.yml +++ b/.travis.yml @@ -66,19 +66,19 @@ script: echo "Building with address sanitizer..." CMAKE_CXX_FLAGS="-fsanitize=address -fno-omit-frame-pointer" renew_build - ninja + ninja -j2 ctest --verbose # - UBSan: echo "Building with undefined behaviour sanitizer..." CMAKE_CXX_FLAGS="-fsanitize=undefined -fno-omit-frame-pointer" renew_build - ninja + ninja -j2 ctest --verbose else # Build an run the tests suite with valgrind renew_build - ninja + ninja -j2 valgrind --error-exitcode=1 --leak-check=full --show-reachable=yes ctest --verbose fi