From 96e30652b6d32615eb87ea513f813a7b5b4a0123 Mon Sep 17 00:00:00 2001 From: Thomas Barber Date: Mon, 13 Jan 2025 12:43:35 +0000 Subject: [PATCH] Trying different github action configuration --- .github/workflows/main.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2aec08a76917..cb3643e920ff 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,7 +20,8 @@ jobs: build: strategy: matrix: - mozconfig: [ "Base", "JitSpew", "TaintSpew" ] + taintspew: [ "false", "true" ] + jitspew: [ "false", "true" ] # The type of runner that the job will run on runs-on: ubuntu-latest @@ -57,11 +58,11 @@ jobs: cp taintfox_mozconfig_spidermonkey .mozconfig - name: Enable JitSpew - if: ${{ matrix.mozconfig }} == "JitSpew" + if: ${{ matrix.jitspew == "true" }} run: echo "ac_add_options --enable-jitspew" >> .mozconfig - name: Enable Taint Spew - if: ${{ matrix.mozconfig }} == "TaintSpew" + if: ${{ matrix.taintspew == "true" }} run: echo "ac_add_options --enable-taintspew" >> .mozconfig # Build @@ -83,7 +84,7 @@ jobs: - name: Upload Report uses: actions/upload-artifact@v4 # upload test results - if: (${{ matrix.mozconfig }} == "Base") && (success() || failure()) # run this step even if previous step failed + if: ${{ matrix.taintspew == "false" && matrix.jitspew == "false" && (success() || failure()) }} # run this step even if previous step failed with: name: test-results path: build/jstest_output.xml