diff options
| author | Leo Neat <leosneat@gmail.com> | 2020-02-11 09:19:35 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-11 18:19:35 +0100 |
| commit | 8de037321c2fd622297aa3f2776580723d03f1dd (patch) | |
| tree | db3a771cb4452351e28455020761af087031d795 /.github | |
| parent | 4d1ab643be2091f794ec55d83ec8acf7b0a60be3 (diff) | |
CIFuzz: surface error logs and test case on failure
* UX update
* Turning dry_run off
* Changing zip output to artifacts
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/main.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 658cd680e..ce8971d63 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,16 +8,16 @@ jobs: uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master with: project-name: 'syzkaller' - dry-run: true + dry-run: false - name: Run Fuzzers uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master with: fuzz-time: 600 - dry-run: true + dry-run: false - name: Upload Crash uses: actions/upload-artifact@v1 if: failure() with: - name: fuzzer_testcase - path: ./out/testcase + name: artifacts + path: ./out/artifacts |
