Skip to content

Commit

Permalink
Disable fail-fast on GitHub Actions for snapshot and release pipeli…
Browse files Browse the repository at this point in the history
…nes (#3018)

Motivation:

We always use 2 pipelines for snapshots and releases (JDK8 and JDK11)
because those build and publish different set of modules. Because they
are independent, we should not fail another one if any of them fail.
  • Loading branch information
idelpivnitskiy authored Aug 6, 2024
1 parent 45fc8f4 commit 565a278
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
name: Release JDK ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [ 8, 11 ]
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
name: Snapshot JDK ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [ 8, 11 ]
steps:
Expand Down

0 comments on commit 565a278

Please sign in to comment.