Utilize 2 cores on travis during build

This commit is contained in:
Jason Turner 2014-03-24 18:55:01 -06:00
parent e4a3b3f620
commit 8879a89490

View File

@ -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/ \;