diff options
| -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 |
