From: Nick Porter Date: Fri, 29 Mar 2024 12:30:12 +0000 (+0000) Subject: Reduce fuzzer timeout as main CI job is finishing first X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1bdd6a166702dc296825c2fe13eff5b14e2c90af;p=thirdparty%2Ffreeradius-server.git Reduce fuzzer timeout as main CI job is finishing first Lengthy fuzzing is still running as a daily scheduled job --- diff --git a/.github/actions/fuzzer/action.yml b/.github/actions/fuzzer/action.yml index d1079381dc1..de7ed7c2a7a 100644 --- a/.github/actions/fuzzer/action.yml +++ b/.github/actions/fuzzer/action.yml @@ -14,7 +14,7 @@ runs: # For fuzzing we won't be needing eapol_test mkdir -p build/tests/eapol_test : > build/tests/eapol_test/eapol_test.mk - make -j `nproc` test.fuzzer FUZZER_TIMEOUT=480 + make -j `nproc` test.fuzzer FUZZER_TIMEOUT=300 find build/fuzzer -type f ! -path 'build/fuzzer/*.log' | grep . && exit 1 || : - name: "Clang libFuzzer: Store assets on failure"