diff --git a/.github/workflows/ipc_fuzzer.yml b/.github/workflows/ipc_fuzzer.yml index 9348f0d6ae03..4c733295b710 100644 --- a/.github/workflows/ipc_fuzzer.yml +++ b/.github/workflows/ipc_fuzzer.yml @@ -83,7 +83,8 @@ jobs: esac duration="${{inputs.fuzzing_duration_s}}" duration="${duration:-301}" # pull_request has not 'inputs.' :-( - sof/scripts/fuzz.sh -o fuzz-stdout.txt -t "$duration" -- "$cmake_arg" + # Note libFuzzer makes a difference between -jobs and -workers (capped at nproc/2) + sof/scripts/fuzz.sh -o fuzz-stdout.txt -t "$duration" -j"$(nproc)" -- "$cmake_arg" - name: Upload stdout uses: actions/upload-artifact@v3