From: Marc Hoersken Date: Tue, 24 Mar 2020 17:19:35 +0000 (+0100) Subject: CI: bring GitHub Actions fuzzing job in line with macOS jobs X-Git-Tag: curl-7_70_0~185 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fd7afa7d3926cc79000edd2ef1c60275ab5a3587;p=thirdparty%2Fcurl.git CI: bring GitHub Actions fuzzing job in line with macOS jobs Update YAML formatting, job naming and triggers. --- diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index 296acc7970..167ae24295 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -1,7 +1,9 @@ -name: CIFuzz -on: [pull_request] +name: CI + +on: [push, pull_request] + jobs: - Fuzzing: + fuzzing: runs-on: ubuntu-latest steps: - name: Build Fuzzers @@ -9,12 +11,14 @@ jobs: with: oss-fuzz-project-name: 'curl' dry-run: false + - name: Run Fuzzers uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master with: oss-fuzz-project-name: 'curl' fuzz-seconds: 600 dry-run: false + - name: Upload Crash uses: actions/upload-artifact@v1 if: failure()