Skip to content

Commit

Permalink
Fix matrix test
Browse files Browse the repository at this point in the history
  • Loading branch information
tschneider-aneo committed Nov 14, 2024
1 parent 173db7d commit b3917b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bench-aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
elif [ "$TRIGGER" = 'release' ]; then
echo '{"include":[{"type": "localhost", "ntasks":100, "polling-limit": 300}, {"type": "aws", "ntasks":1000, "polling-limit": 600}]}' > matrix.json
fi
echo "::set-output name=matrix::$(cat matrix.json)"
echo "matrix=$(cat matrix.json)" >> "$GITHUB_OUTPUT"
test-matrix:
name: Test matrix
runs-on: ubuntu-latest
needs: define-matrix
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.define-matrix.outputs.matrix) }}
matrix: ${{ fromJson(needs.define-matrix.outputs.matrix) }}
steps:
- id: test
name: Test matrix
Expand Down

0 comments on commit b3917b6

Please sign in to comment.