From 89708ae2770a8dbde9627bc59e6e9e883e7f7bb4 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 31 Oct 2017 12:32:45 +0000 Subject: [PATCH] Upped the number of threads used in build to try and improve build speed --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index cd75a2587..aeb202144 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,7 +32,7 @@ matrix: description: "OpenSceneGraph build" notification_email: robert@openscenegraph.com build_command_prepend: "cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_OSG_DEPRECATED_SERIALIZERS=OFF ." - build_command: "make -j 3" + build_command: "make -j 4" branch_pattern: coverity_scan apt: sources: @@ -70,4 +70,4 @@ matrix: script: - if [ "${COVERITY_SCAN_BRANCH}" != 1 ]; then mkdir build && cd build && travis_wait 60 cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=../product $CMAKECMD_ARGS ../ ; fi - - if [ -f CMakeCache.txt ]; then make -j3 ; fi + - if [ -f CMakeCache.txt ]; then make -j4 ; fi