Skip to content

Commit

Permalink
Disable fail fast for GitHub Action matrix (#571)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-ai committed Jul 14, 2023
1 parent 8b25896 commit 7a73ec9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/cpp_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ jobs:
name: "${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# switch back to VS 2019 when https://github.com/bazelbuild/bazel/issues/18592 issue is solved
# Disable VS 2022 before https://github.com/bazelbuild/bazel/issues/18592 issue is solved
# os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12, windows-2019, windows-2022]
os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12, windows-2019]
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/csharp_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ jobs:
name: "${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-11, windows-2022]
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/golang_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ jobs:
name: "${{ matrix.os }}, go-${{ matrix.go }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-11, windows-2022]
go: [1.17]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/java_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ jobs:
name: "${{ matrix.os }}, jdk-${{ matrix.jdk }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-11, windows-2022]
jdk: [11, 17]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/php_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ jobs:
name: "${{ matrix.os }}, PHP-${{ matrix.php-version }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
php-version: ["7.4", "8.0", "8.1"]
os: [ubuntu-20.04, macos-11, windows-2022]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/rust_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ jobs:
run:
working-directory: ./rust
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-11, windows-2022]
msrv: [1.61]
Expand Down

0 comments on commit 7a73ec9

Please sign in to comment.