[master] 1b606ff94 ci: Increase parallelism in Travis CI builds

Dridi Boukelmoune dridi.boukelmoune at gmail.com
Wed Oct 28 15:27:09 UTC 2020


commit 1b606ff940309d3ba62a392ac3050902aa740b8c
Author: Dridi Boukelmoune <dridi.boukelmoune at gmail.com>
Date:   Wed Oct 28 16:21:38 2020 +0100

    ci: Increase parallelism in Travis CI builds
    
    They are taking too long, needlessly holding onto job slots forever.
    
    Align with CircleCI for now, even though we could probably do more.

diff --git a/.travis.yml b/.travis.yml
index 7175105fd..90ce54d2f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -28,9 +28,9 @@ jobs:
       script: &script-common
         - |
           if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then
-            make -j8 distcheck VERBOSE=1
+            make -j12 distcheck VERBOSE=1
           else
-            make -j8 check VERBOSE=1
+            make -j16 check VERBOSE=1
           fi
     - <<: *test-linux
       arch: arm64
@@ -47,7 +47,7 @@ jobs:
         - ./configure --enable-maintainer-mode
     - <<: *test-linux
       env: WITNESS=1
-      script: make -j8 witness VERBOSE=1
+      script: make -j16 witness VERBOSE=1
     - <<: *test-linux
       stage: sanitizers
       addons:


More information about the varnish-commit mailing list