From 06150bf1b39b70e521560bc943ac19b281903ebc Mon Sep 17 00:00:00 2001 From: Leo Neat Date: Thu, 6 Feb 2020 13:50:58 -0800 Subject: Update workflow to reflect new CIFuzz format --- .github/workflows/main.yml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to '.github/workflows') 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 -- cgit mrf-deployment