From 8879a8949067ca09819651cbea23f43a22853ce1 Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Mon, 24 Mar 2014 18:55:01 -0600 Subject: [PATCH] Utilize 2 cores on travis during build --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9d768ea..5ee44a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ before_install: - sudo pip install cpp-coveralls --use-mirrors script: - cmake -D ENABLE_COVERAGE:BOOL=TRUE -D CMAKE_BUILD_TYPE:STRING=Debug -D USE_LIBCXX:BOOL=FALSE . - - make + - make -j2 - make test - mkdir gcov - find CMakeFiles/ -name "*.gc*" -exec mv {} gcov/ \;