aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2016-03-22 12:22:27 +0000
committerAlex Bennée <alex.bennee@linaro.org>2016-04-05 10:08:15 +0100
commit7436268ce7062b32af1d07a392e00f0c3ae664cd (patch)
tree27496f3061679ffea270ac0156b11d99a93498e0 /.travis.yml
parent1d002037f93898c9b507cd010bbb9075870ecc5d (diff)
.travis.yml: make -j3
The move from Travis VMs to Containers came with a upgrade from 1.5 cores to 2. The received wisdom is -j N+1 means a core can be doing work while other threads wait for IO to complete. This is hard to test on the Travis infrastructure but an initial before/after eyeballing seems to confirm it is an improvement. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index f02710dcc1..50ac17f4d7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -60,7 +60,7 @@ before_install:
before_script:
- ./configure ${CONFIG}
script:
- - make -j2 && ${TEST_CMD}
+ - make -j3 && ${TEST_CMD}
matrix:
include:
# Sparse is GCC only