diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2020-03-24 18:19:35 +0100 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2020-03-24 18:19:35 +0100 |
commit | fd7afa7d3926cc79000edd2ef1c60275ab5a3587 (patch) | |
tree | 3dfa3725f6fff607b5862d8af595eadd285dee68 /.github | |
parent | 840df8b0d99797569f4964037441129c7777cf9a (diff) | |
download | curl-fd7afa7d3926cc79000edd2ef1c60275ab5a3587.tar.gz |
CI: bring GitHub Actions fuzzing job in line with macOS jobs
Update YAML formatting, job naming and triggers.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/fuzz.yml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index 296acc797..167ae2429 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() |