[master] 0804bbab4 circleci: Reduce concurrency of ubuntu:noble jobs

Dridi Boukelmoune dridi.boukelmoune at gmail.com
Tue Mar 5 05:46:07 UTC 2024


commit 0804bbab49161d6912855661f1aeaf5c1963c7ec
Author: Dridi Boukelmoune <dridi.boukelmoune at gmail.com>
Date:   Mon Mar 4 18:22:49 2024 +0100

    circleci: Reduce concurrency of ubuntu:noble jobs
    
    In an attempt to avoid EAGAIN failures on pthread creations with ASAN
    and UBSAN sanitizers enabled.

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 90851f72e..66144d11c 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -353,7 +353,7 @@ jobs:
                 << parameters.extra_conf >>
             sudo -u varnish \
                 --preserve-env=ASAN_OPTIONS,LSAN_OPTIONS,TSAN_OPTIONS,UBSAN_OPTIONS \
-                make << parameters.make_target >> VERBOSE=1 -j 4 -k \
+                make -j 4 -k << parameters.make_target >> VERBOSE=1 \
                 DISTCHECK_CONFIGURE_FLAGS="<< pipeline.parameters.configure_args >> \
                 << parameters.extra_conf >>"
             '
@@ -419,6 +419,7 @@ workflows:
           name: build_debian_bookworm
           dist: debian
           release: bookworm
+      # latest ubuntu uses sanitizers
       - build:
           name: build_ubuntu_focal
           dist: ubuntu
@@ -432,6 +433,7 @@ workflows:
           dist: ubuntu
           release: noble
           extra_conf: --enable-asan --enable-ubsan --enable-workspace-emulator
+          make_target: check -j2
       - build:
           name: build_alpine
           dist: alpine


More information about the varnish-commit mailing list