Skip to content

Commit

Permalink
dont fail concurrent jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
k15r committed Oct 11, 2024
1 parent edaab6a commit bd2b26c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr-loadtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- id: set-matrix
run: |
image=${{ github.event.inputs.image }}
matrix=$(jq --arg image "$image" 'map( . | select (.image==$image) )' hack/load-tests/matrix_includes.json)
matrix=$(jq --arg image "$image" 'map( . | select (.image==$image) | ."fail-fast" = false )' hack/load-tests/matrix_includes.json)
echo "matrix={\"include\":$(echo $matrix)}" >> $GITHUB_OUTPUT
load-test:
Expand Down

0 comments on commit bd2b26c

Please sign in to comment.