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
|
type: string
|
||||||
default: '{}'
|
default: '{}'
|
||||||
description: Map of targets to artifact files to upload
|
description: Map of targets to artifact files to upload
|
||||||
|
fail_fast:
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
description: Fail-fast for the underlying matrix.
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
bake:
|
bake:
|
||||||
@@ -75,7 +79,7 @@ jobs:
|
|||||||
|
|
||||||
runs-on: ${{matrix.machine}}
|
runs-on: ${{matrix.machine}}
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: true
|
fail-fast: ${{inputs.fail_fast}}
|
||||||
matrix:
|
matrix:
|
||||||
exclude: ${{fromJSON(inputs.excludes)}}
|
exclude: ${{fromJSON(inputs.excludes)}}
|
||||||
include: ${{fromJSON(inputs.includes)}}
|
include: ${{fromJSON(inputs.includes)}}
|
||||||
|
|||||||
Reference in New Issue
Block a user