From: Alan T. DeKok Date: Fri, 15 Oct 2021 12:04:39 +0000 (-0400) Subject: one more try to make the magic github workers happy? X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c8b77160d1d3b8bd3ae07a868785d7e4eb17f80;p=thirdparty%2Ffreeradius-server.git one more try to make the magic github workers happy? --- diff --git a/.github/workflows/ci-scheduled-fuzzing.yml b/.github/workflows/ci-scheduled-fuzzing.yml index e80b673408d..d35514d8fa7 100644 --- a/.github/workflows/ci-scheduled-fuzzing.yml +++ b/.github/workflows/ci-scheduled-fuzzing.yml @@ -154,11 +154,11 @@ 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" + 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`" > build/fuzzer/$(PROTOCOL).log || : - tail -30 build/fuzzer/$(PROTOCOL).log - echo "FAILED fuzzing $(PROTOCOL)" + timeout "$REMAINING_TIME" make test.fuzzer.$PROTOCOL FUZZER_TIMEOUT=300 FUZZER_ARGUMENTS="-jobs=10000 -workers=`nproc`" > build/fuzzer/$PROTOCOL.log || : + tail -30 build/fuzzer/$PROTOCOL.log + echo "FAILED fuzzing $PROTOCOL" cp fuzz-*.log build/fuzzer find build/fuzzer -type f ! -name 'fuzz-*.log' | grep . && exit 1 || : env: