From bd15ce7644d04d7eb6feb44c9f93774b34121b35 Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Fri, 18 Nov 2022 07:37:29 +0000 Subject: [PATCH] ci: run fuzz targets on i386 as well --- .github/workflows/cifuzz.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 -- 2.47.3