aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJonas Witschel <diabonas@gmx.de>2019-06-11 10:58:40 +0200
committerAndreas Fuchs <andreas.fuchs@sit.fraunhofer.de>2019-06-12 09:55:12 +0200
commit740653a12e203b214cba2f07b5395ffce74dfc03 (patch)
tree602656abbcb10a8e7287dda621de280264ec95f1 /.travis.yml
parent14a0c6fd19ae5112060a8e8ade73292a8a9c98ae (diff)
downloadtpm2-tss-740653a12e203b214cba2f07b5395ffce74dfc03.tar.gz
ci: don't limit the amount of parallel jobs for make (dist)check
Much of the CI time is spent on running the integration test suite, which is not CPU bound, so allowing more parallel jobs allows for some speedup. Signed-off-by: Jonas Witschel <diabonas@gmx.de>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 2fd62a20..d9b8b25c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -113,9 +113,9 @@ script:
fi
- |
if [ "$CC" == "clang" ]; then
- scan-build --status-bugs make -j$(nproc) distcheck
+ scan-build --status-bugs make -j distcheck
else
- make -j$(nproc) check
+ make -j check
fi
after_success: