ci: Add argument for failing the underlying bake matrix slower.

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2025-05-31 03:30:45 +00:00
parent 112e43d753
commit 288c49c436

View File

@@ -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)}}