From: Neil Horman Date: Fri, 1 May 2026 12:23:27 +0000 (-0400) Subject: Limit job count on compiler zoo builds X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa442ca7b5f21b11a864868dd89bb9728caccb19;p=thirdparty%2Fopenssl.git Limit job count on compiler zoo builds The security repo keeps failing our compiler zoo jobs, consistently. It appears to be happening because our compiler zoo jobs use make -j without any limit on the number of jobs, leading to github aborting them all when the workload gets too high. I suspect that we're using a smaller runner in the security repo than we are in our public repo, which is why we don't see it there. Our other CI jobs all limit the job count to 4 during make, do the same here. Reviewed-by: Eugene Syromiatnikov Reviewed-by: Paul Yang MergeDate: Mon May 4 09:33:34 2026 (Merged from https://github.com/openssl/openssl/pull/31059) --- diff --git a/.github/workflows/compiler-zoo.yml b/.github/workflows/compiler-zoo.yml index 3a0289a10da..6422733a436 100644 --- a/.github/workflows/compiler-zoo.yml +++ b/.github/workflows/compiler-zoo.yml @@ -37,7 +37,7 @@ jobs: - name: config dump run: ./configdata.pm --dump - name: make - run: make -s -j + run: make -s -j4 - name: get cpu info run: | cat /proc/cpuinfo @@ -73,7 +73,7 @@ jobs: - name: config dump run: ./configdata.pm --dump - name: make - run: make -s -j + run: make -s -j4 - name: get cpu info run: | cat /proc/cpuinfo