From: Alan T. DeKok Date: Fri, 15 Oct 2021 12:06:18 +0000 (-0400) Subject: nope. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aacfce734b270ca6427834d2c44116790d7d5c53;p=thirdparty%2Ffreeradius-server.git nope. whoever decided to use YAML for shell scripts is an idiot. --- diff --git a/.github/workflows/ci-scheduled-fuzzing.yml b/.github/workflows/ci-scheduled-fuzzing.yml index d35514d8fa7..9a589ad9c8d 100644 --- a/.github/workflows/ci-scheduled-fuzzing.yml +++ b/.github/workflows/ci-scheduled-fuzzing.yml @@ -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`" > build/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 }}"