]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Revert "no need to dump out the entire fuzzing to the main actions log"
authorAlan T. DeKok <aland@freeradius.org>
Fri, 15 Oct 2021 11:55:23 +0000 (07:55 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Fri, 15 Oct 2021 11:55:23 +0000 (07:55 -0400)
This reverts commit 7b5697af0e1fa23898307c7514ce230c3964b561.

.github/workflows/ci-scheduled-fuzzing.yml

index 1ae87d4c6d9082841f1b3c79ace3ae3f8423eb11..9a589ad9c8d4b7d5628cec48253a8bc3637eba39 100644 (file)
@@ -154,12 +154,8 @@ jobs:
         REMAINING_TIME=$(( $TOTAL_RUNTIME + `cat ~/start_timestamp` - `date +%s` ))
         echo "Fuzzing ${{ steps.pick_commit.outputs.commit_id }}:$PROTOCOL for $REMAINING_TIME secs"
         [[ "$REMAINING_TIME" -lt 1 ]] && exit 1
-       echo "Fuzzing $(PROTOCOL) for 300s"
-       mkdir -p build/fuzzer
-        timeout "$REMAINING_TIME" make test.fuzzer.$PROTOCOL FUZZER_TIMEOUT=300 FUZZER_ARGUMENTS="-jobs=10000 -workers=`nproc` > buid/fuzzer/$(PROTOCOL).log" || :
-       tail -30 build/fuzzer/$(PROTOCOL).log
-       echo "FAILED fuzzing $(PROTOCOL)"
-       cp fuzz-*.log build/fuzzer
+        timeout "$REMAINING_TIME" make test.fuzzer.$PROTOCOL FUZZER_TIMEOUT=300 FUZZER_ARGUMENTS="-jobs=10000 -workers=`nproc`" || :
+        cp fuzz-*.log build/fuzzer
         find build/fuzzer -type f ! -name 'fuzz-*.log' | grep . && exit 1 || :
       env:
         GITHUB_REF: "${{ github.ref }}"