Skip to content

Commit 8faeb29

Browse files
authored
Merge pull request #1305 from o1-labs/dw/fail-fast
CI: set fail-fast to false to prevent cancelling other jobs
2 parents 05b85b9 + cc75506 commit 8faeb29

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ jobs:
115115
# NOTE: If you add or remove platforms from this matrix, make sure to update
116116
# the documentation at website/docs/developers/getting-started.mdx
117117
strategy:
118+
fail-fast: false # Allow other platforms to continue if one fails
118119
matrix:
119120
os: [ubuntu-22.04, ubuntu-24.04, ubuntu-24.04-arm, macos-latest]
120121
runs-on: ${{ matrix.os }}
@@ -146,6 +147,7 @@ jobs:
146147
# NOTE: If you add or remove platforms from this matrix, make sure to update
147148
# the documentation at website/docs/developers/getting-started.mdx
148149
strategy:
150+
fail-fast: false # Allow other platforms to continue if one fails
149151
matrix:
150152
os: [ubuntu-22.04, ubuntu-24.04, ubuntu-24.04-arm, macos-latest]
151153
runs-on: ${{ matrix.os }}
@@ -168,6 +170,7 @@ jobs:
168170
# NOTE: If you add or remove platforms from this matrix, make sure to update
169171
# the documentation at website/docs/developers/getting-started.mdx
170172
strategy:
173+
fail-fast: false # Allow other platforms to continue if one fails
171174
matrix:
172175
os: [ubuntu-22.04, ubuntu-24.04, ubuntu-24.04-arm, macos-latest]
173176
runs-on: ${{ matrix.os }}
@@ -205,6 +208,7 @@ jobs:
205208
# NOTE: If you add or remove platforms from this matrix, make sure to update
206209
# the documentation at website/docs/developers/getting-started.mdx
207210
strategy:
211+
fail-fast: false # Allow other platforms to continue if one fails
208212
matrix:
209213
os: [ubuntu-22.04, ubuntu-24.04, ubuntu-24.04-arm, macos-latest]
210214
runs-on: ${{ matrix.os }}

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6464
- Use consistent `use` statements for fields. Replace `mina_hasher::Fp` with
6565
`mina_curves::pasta::Fp`.
6666
([#1269](https://github.com/o1-labs/openmina/pull/1269/)).
67+
- **CI**: set fail-fast to false to prevent cancellation of other jobs
68+
([#1305](https://github.com/o1-labs/openmina/pull/1305))
6769

6870
### Fixed
6971

0 commit comments

Comments
 (0)