Skip to content

Commit f21b6fb

Browse files
Continue demo builds (#1600)
This PR adds the `fail-fast: false` configuration to the v2 build demo Action. Currently, when building multiple demos (e.g. master or dev branch builds) a single failing demo will halt the build process. With this configuration, the build will continue and attempt to build all demos, even if one or more fails. All demos must still build successfully for further steps of the pipeline to be triggered.
1 parent c07a84e commit f21b6fb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/v2-build-demos.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ jobs:
157157
runs-on: ubuntu-latest
158158
needs: [generate-build-variables]
159159
strategy:
160+
fail-fast: false
160161
matrix:
161162
chunk-index: ${{ fromJson(needs.generate-build-variables.outputs.chunk-indexes) }}
162163
steps:

0 commit comments

Comments
 (0)