diff options
| author | Leo Neat <leosneat@gmail.com> | 2020-02-06 13:50:58 -0800 |
|---|---|---|
| committer | Andrey Konovalov <andreyknvl@gmail.com> | 2020-02-07 00:15:47 +0100 |
| commit | 06150bf1b39b70e521560bc943ac19b281903ebc (patch) | |
| tree | c8b9809c40decba1082213b2646b376ae498ea97 /.github | |
| parent | c321812877c37a1dc422f4f4441d3f74f47991f8 (diff) | |
Update workflow to reflect new CIFuzz format
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/main.yml | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 08b292435..658cd680e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,20 +1,22 @@ name: CIFuzz - on: [pull_request] - jobs: - fuzz: - + Fuzzing: runs-on: ubuntu-latest - steps: - - name: Building and running fuzzers - uses: google/oss-fuzz/infra/cifuzz/actions@master + - name: Build Fuzzers + uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master with: project-name: 'syzkaller' - fuzz-time: 360 - dry-run: True - - uses: actions/upload-artifact@v1 + dry-run: true + - name: Run Fuzzers + uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master + with: + fuzz-time: 600 + dry-run: true + - name: Upload Crash + uses: actions/upload-artifact@v1 + if: failure() with: name: fuzzer_testcase path: ./out/testcase |
