Commit 0804bbab authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

circleci: Reduce concurrency of ubuntu:noble jobs

In an attempt to avoid EAGAIN failures on pthread creations with ASAN
and UBSAN sanitizers enabled.
parent 14789124
...@@ -353,7 +353,7 @@ jobs: ...@@ -353,7 +353,7 @@ jobs:
<< parameters.extra_conf >> << parameters.extra_conf >>
sudo -u varnish \ sudo -u varnish \
--preserve-env=ASAN_OPTIONS,LSAN_OPTIONS,TSAN_OPTIONS,UBSAN_OPTIONS \ --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 >> \ DISTCHECK_CONFIGURE_FLAGS="<< pipeline.parameters.configure_args >> \
<< parameters.extra_conf >>" << parameters.extra_conf >>"
' '
...@@ -419,6 +419,7 @@ workflows: ...@@ -419,6 +419,7 @@ workflows:
name: build_debian_bookworm name: build_debian_bookworm
dist: debian dist: debian
release: bookworm release: bookworm
# latest ubuntu uses sanitizers
- build: - build:
name: build_ubuntu_focal name: build_ubuntu_focal
dist: ubuntu dist: ubuntu
...@@ -432,6 +433,7 @@ workflows: ...@@ -432,6 +433,7 @@ workflows:
dist: ubuntu dist: ubuntu
release: noble release: noble
extra_conf: --enable-asan --enable-ubsan --enable-workspace-emulator extra_conf: --enable-asan --enable-ubsan --enable-workspace-emulator
make_target: check -j2
- build: - build:
name: build_alpine name: build_alpine
dist: alpine dist: alpine
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment