]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
cifuzz: build fuzz target with UBsan and MSan as well
authorEvgeny Vereshchagin <evvers@ya.ru>
Thu, 11 Jun 2020 20:26:17 +0000 (22:26 +0200)
committerFrantisek Sumsal <frantisek@sumsal.cz>
Fri, 12 Jun 2020 08:17:57 +0000 (10:17 +0200)
.github/workflows/cifuzz.yml

index b46b1d619e27fa0a3091efb90d892683a38917fb..ed6db50d96d1c31e3e3e7196be78de5f30703dfa 100644 (file)
@@ -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