Attempt to make travis build with more cores

This commit is contained in:
Joseph Donofry 2019-05-12 22:44:17 -04:00
parent be5287aa90
commit b8b48a2f3d
No known key found for this signature in database
GPG Key ID: E8A1D78EF044B0CB
1 changed files with 2 additions and 0 deletions

View File

@ -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