Skip to content

Commit

Permalink
Fix matrix evaluation for wasm functional tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oskirby committed Dec 2, 2024
1 parent 0b57277 commit 0e98aaf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/wasm_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: Wasm Qt6
runs-on: ubuntu-20.04
outputs:
matrix: ${{ steps.testGen.outputs.tests }}
matrix: ${{ steps.enumerate.outputs.tests }}
env:
QTVERSION: 6.2.4

Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
!build/cmake/
- name: Generate tasklist
id: testGen
id: enumerate
shell: bash
run: |
echo -n "tests=" >> $GITHUB_OUTPUT
Expand All @@ -87,7 +87,7 @@ jobs:
- name: Check tests
shell: bash
env:
TEST_LIST: ${{ steps.testGen.outputs.tests }}
TEST_LIST: ${{ steps.enumerate.outputs.tests }}
run: |
echo $TEST_LIST | jq
Expand All @@ -101,7 +101,7 @@ jobs:
strategy:
fail-fast: false # Don't cancel other jobs if a test fails
matrix:
test: ${{ fromJson(needs.wasmQt6.outputs.matrix) }}
test: ${{ fromJson(needs.build_test_app.outputs.matrix) }}
env:
QTVERSION: 6.2.4

Expand Down

0 comments on commit 0e98aaf

Please sign in to comment.