diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2020-06-11 22:26:17 +0200 |
---|---|---|
committer | Frantisek Sumsal <frantisek@sumsal.cz> | 2020-06-12 10:17:57 +0200 |
commit | a2c703597699d040468d73160a1957065ea96e3a (patch) | |
tree | 7861bc20b188992227e6d7a419b91324efe41717 /.github/workflows/cifuzz.yml | |
parent | turn off fuzzit part 2 (diff) | |
download | systemd-a2c703597699d040468d73160a1957065ea96e3a.tar.xz systemd-a2c703597699d040468d73160a1957065ea96e3a.zip |
cifuzz: build fuzz target with UBsan and MSan as well
Diffstat (limited to '.github/workflows/cifuzz.yml')
-rw-r--r-- | .github/workflows/cifuzz.yml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml index b46b1d619e..ed6db50d96 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/cifuzz.yml @@ -19,23 +19,29 @@ jobs: Fuzzing: runs-on: ubuntu-latest if: github.repository == 'systemd/systemd' + strategy: + fail-fast: false + matrix: + sanitizer: [address, undefined, memory] steps: - - name: Build Fuzzers + - name: Build Fuzzers (${{ matrix.sanitizer }}) id: build uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master with: oss-fuzz-project-name: 'systemd' dry-run: false allowed-broken-targets-percentage: 0 - - name: Run Fuzzers + sanitizer: ${{ matrix.sanitizer }} + - name: Run Fuzzers (${{ matrix.sanitizer }}) uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master with: oss-fuzz-project-name: 'systemd' fuzz-seconds: 600 dry-run: false + sanitizer: ${{ matrix.sanitizer }} - name: Upload Crash uses: actions/upload-artifact@v1 if: failure() && steps.build.outcome == 'success' with: - name: artifacts + name: ${{ matrix.sanitizer }}-artifacts path: ./out/artifacts |