From: Terry Burton Date: Fri, 22 Oct 2021 12:16:09 +0000 (+0100) Subject: fuzzer CI: Don't choke on log output alone; sufficient parallelism for all (#4284) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b0e871adad036b5ad83cbc8117863c0a47adbdd;p=thirdparty%2Ffreeradius-server.git fuzzer CI: Don't choke on log output alone; sufficient parallelism for all (#4284) --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 50c9d8df490..471e4d7adc9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -333,8 +333,8 @@ jobs: # For fuzzing we won't be needing eapol_test mkdir -p build/tests/eapol_test : > build/tests/eapol_test/eapol_test.mk - make -j 5 test.fuzzer FUZZER_TIMEOUT=720 - find build/fuzzer -type f | grep . && exit 1 || : + make -j 8 test.fuzzer FUZZER_TIMEOUT=720 + find build/fuzzer -type f ! -path 'build/fuzzer/*.log' | grep . && exit 1 || : - name: "Clang libFuzzer: Store assets on failure" uses: actions/upload-artifact@v2