From b8b48a2f3dfd7f32700147b324c761c85122cfe1 Mon Sep 17 00:00:00 2001 From: Joseph Donofry Date: Sun, 12 May 2019 22:44:17 -0400 Subject: [PATCH] Attempt to make travis build with more cores --- .ci/script.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.ci/script.sh b/.ci/script.sh index 07ff56ed..cf8b524b 100755 --- a/.ci/script.sh +++ b/.ci/script.sh @@ -5,6 +5,8 @@ set -ex if [ "$TRAVIS_OS_NAME" = "linux" ]; then export CC=${C_COMPILER} export CXX=${CXX_COMPILER} + # make build use all available cores + export CMAKE_BUILD_PARALLEL_LEVEL=$(cat /proc/cpuinfo | awk '/^processor/{print $3}' | wc -l) sudo update-alternatives --install /usr/bin/gcc gcc "/usr/bin/${C_COMPILER}" 10 sudo update-alternatives --install /usr/bin/g++ g++ "/usr/bin/${CXX_COMPILER}" 10