diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-05-15 17:55:51 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-05-18 11:34:42 +0200 |
| commit | ec15ba17bec71f662375f342cb66fb6cde6d4718 (patch) | |
| tree | c71333be09511416f38f97515753ed3ecb1e3fb5 /.github/workflows/oss-fuzz.yml | |
| parent | 4836c13c61f1945da510fc12d1c93a51603aaf04 (diff) | |
.github/workflows: rename oss-fuzz workflow
Diffstat (limited to '.github/workflows/oss-fuzz.yml')
| -rw-r--r-- | .github/workflows/oss-fuzz.yml | 30 |
1 files changed, 30 insertions, 0 deletions
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 |
