enos: don't fail fast in enos integration matrix (#16960)
Disable the fail-fast feature for the matrix strategy. This prevents a single failure to cascade to all jobs in the matrix. This prevents cases where other jobs fail before they're able to clean up resources. Signed-off-by: Ryan Cragun <me@ryan.ec>
This commit is contained in:
parent
c59bb185bc
commit
b1bc8498e8
|
@ -17,6 +17,7 @@ jobs:
|
|||
enos:
|
||||
name: Integration
|
||||
strategy:
|
||||
fail-fast: false # don't fail as that can skip required cleanup steps for jobs
|
||||
matrix:
|
||||
# Run four scenarios to get a maximal distribution of variants in as
|
||||
# few jobs as possible.
|
||||
|
|
Loading…
Reference in New Issue