Skip to content

Commit

Permalink
Fix yaml
Browse files Browse the repository at this point in the history
Signed-off-by: Alan Jowett <[email protected]>
  • Loading branch information
Alan Jowett committed Oct 30, 2024
1 parent 2f88153 commit e80641f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/fuzzing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,14 +237,14 @@ jobs:
if: matrix.platform == 'ubuntu-24.04' && inputs.regression_test != true
run: |
ls
UBPF_FUZZER_CONSTRAINT_CHECK=1 ./ubpf_fuzzer new_corpus -artifact_prefix=artifacts/ -use_value_profile=1 -max_total_time=7200 -dict=dictionary.txt -jobs=1024
UBPF_FUZZER_CONSTRAINT_CHECK=1 ./ubpf_fuzzer new_corpus -artifact_prefix=artifacts/ -use_value_profile=1 -max_total_time=1800 -dict=dictionary.txt -jobs=$(nproc) -workers=$(nproc)
# If this is a scheduled run or a manual run, run ubpf_fuzzer to attempt to find new crashes. Runs for 2 hours.
- name: Run fuzzing
if: matrix.platform == 'windows-latest' && inputs.regression_test != true
run: |
ls
./ubpf_fuzzer new_corpus -artifact_prefix=artifacts/ -use_value_profile=1 -max_total_time=7200 -jobs=1024
./ubpf_fuzzer new_corpus -artifact_prefix=artifacts/ -use_value_profile=1 -max_total_time=1800 -jobs=$(nproc) -workers=$(nproc)
# Merge the new corpus into the existing corpus and push the changes to the repository.
- name: Merge corpus into fuzz/corpus
Expand Down

0 comments on commit e80641f

Please sign in to comment.