From ec15ba17bec71f662375f342cb66fb6cde6d4718 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 15 May 2020 17:55:51 +0200 Subject: .github/workflows: rename oss-fuzz workflow --- .github/workflows/main.yml | 28 ---------------------------- .github/workflows/oss-fuzz.yml | 30 ++++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 28 deletions(-) delete mode 100644 .github/workflows/main.yml create mode 100644 .github/workflows/oss-fuzz.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 05ae96f37..000000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: CIFuzz -# The action is broken, disable for now. -# https://github.com/google/oss-fuzz/issues/3670 -on: - pull_request: - branches-ignore: '**' -jobs: - Fuzzing: - runs-on: ubuntu-latest - steps: - - name: Build Fuzzers - uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master - with: - oss-fuzz-project-name: 'syzkaller' - dry-run: false - - name: Run Fuzzers - uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master - with: - oss-fuzz-project-name: 'syzkaller' - fuzz-seconds: 600 - dry-run: false - - name: Upload Crash - uses: actions/upload-artifact@v1 - if: failure() - with: - name: artifacts - path: ./out/artifacts - diff --git a/.github/workflows/oss-fuzz.yml b/.github/workflows/oss-fuzz.yml new file mode 100644 index 000000000..1f91cb08d --- /dev/null +++ b/.github/workflows/oss-fuzz.yml @@ -0,0 +1,30 @@ +# Copyright 2020 syzkaller project authors. All rights reserved. +# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. + +name: oss-fuzz +# The action is broken, disable for now. +# https://github.com/google/oss-fuzz/issues/3670 +on: + pull_request: + branches-ignore: '**' +jobs: + Fuzzing: + runs-on: ubuntu-latest + steps: + - name: Build Fuzzers + uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master + with: + oss-fuzz-project-name: 'syzkaller' + dry-run: false + - name: Run Fuzzers + uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master + with: + oss-fuzz-project-name: 'syzkaller' + fuzz-seconds: 600 + dry-run: false + - name: Upload Crash + uses: actions/upload-artifact@v1 + if: failure() + with: + name: artifacts + path: ./out/artifacts -- cgit mrf-deployment