From: Evgeny Vereshchagin Date: Fri, 18 Nov 2022 07:37:29 +0000 (+0000) Subject: ci: run fuzz targets on i386 as well X-Git-Tag: v2.39-rc1~417^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bd15ce7644d04d7eb6feb44c9f93774b34121b35;p=thirdparty%2Futil-linux.git ci: run fuzz targets on i386 as well --- diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml index e4945c06a2..944441a730 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/cifuzz.yml @@ -27,6 +27,10 @@ jobs: fail-fast: false matrix: sanitizer: [address, undefined, memory] + architecture: [x86_64] + include: + - sanitizer: address + architecture: i386 steps: - name: Build Fuzzers (${{ matrix.sanitizer }}) id: build @@ -36,6 +40,7 @@ jobs: dry-run: false allowed-broken-targets-percentage: 0 sanitizer: ${{ matrix.sanitizer }} + architecture: ${{ matrix.architecture }} - name: Run Fuzzers (${{ matrix.sanitizer }}) uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master with: @@ -47,5 +52,5 @@ jobs: uses: actions/upload-artifact@v1 if: failure() && steps.build.outcome == 'success' with: - name: ${{ matrix.sanitizer }}-artifacts + name: ${{ matrix.sanitizer }}-${{ matrix.architecture }}-artifacts path: ./out/artifacts