ci: Add argument for failing the underlying bake matrix slower.
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
6
.github/workflows/bake.yml
vendored
6
.github/workflows/bake.yml
vendored
@@ -54,6 +54,10 @@ on:
|
||||
type: string
|
||||
default: '{}'
|
||||
description: Map of targets to artifact files to upload
|
||||
fail_fast:
|
||||
type: boolean
|
||||
default: false
|
||||
description: Fail-fast for the underlying matrix.
|
||||
|
||||
jobs:
|
||||
bake:
|
||||
@@ -75,7 +79,7 @@ jobs:
|
||||
|
||||
runs-on: ${{matrix.machine}}
|
||||
strategy:
|
||||
fail-fast: true
|
||||
fail-fast: ${{inputs.fail_fast}}
|
||||
matrix:
|
||||
exclude: ${{fromJSON(inputs.excludes)}}
|
||||
include: ${{fromJSON(inputs.includes)}}
|
||||
|
||||
Reference in New Issue
Block a user