aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHerbert Thielen <thielen@hs-worms.de>2017-09-04 18:19:06 +0200
committerHerbert Thielen <thielen@hs-worms.de>2017-09-04 18:19:06 +0200
commitd96a038e8b2bce971192669f3ea3965612678633 (patch)
treeb258d2797971a95361cb89cdfea142d29cd31231
parent7c6353d29a147cad1c904bf2957fd4ca2befe135 (diff)
downloadgoogletest-d96a038e8b2bce971192669f3ea3965612678633.tar.gz
googletest-d96a038e8b2bce971192669f3ea3965612678633.tar.bz2
googletest-d96a038e8b2bce971192669f3ea3965612678633.zip
set MAKEFLAGS to use multiple processors on Travis CI
-rwxr-xr-xtravis.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/travis.sh b/travis.sh
index bd226a8d..3a6c297a 100755
--- a/travis.sh
+++ b/travis.sh
@@ -1,5 +1,16 @@
#!/usr/bin/env sh
set -evx
+
+# if possible, ask for the precise number of processors,
+# otherwise take 2 processors as reasonable default; see
+# https://docs.travis-ci.com/user/speeding-up-the-build/#Makefile-optimization
+if [ -x /usr/bin/getconf ]; then
+ MAKEFLAGS=j$(/usr/bin/getconf _NPROCESSORS_ONLN)
+else
+ MAKEFLAGS="j2"
+fi
+export MAKEFLAGS
+
env | sort
mkdir build || true