Skip to content

Commit

Permalink
disable fail-fast on GH Actions workflows
Browse files Browse the repository at this point in the history
For future, we can leave this as the default (true), but for
testing on the PR we want to see both actions run
  • Loading branch information
ZacBlanco committed Oct 15, 2024
1 parent a03da0a commit e6b7f1d
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/hive-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
hive-tests:
strategy:
fail-fast: false
matrix:
java: [ 8, 17 ]
runs-on: ubuntu-latest
Expand Down Expand Up @@ -87,6 +88,7 @@ jobs:
hive-dockerized-tests:
strategy:
fail-fast: false
matrix:
java: [ 8, 17 ]
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/kudu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
- '!presto-docs/**'
kudu:
strategy:
fail-fast: false
matrix:
java: [ 8, 17 ]
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/maven-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ env:
jobs:
maven-checks:
strategy:
fail-fast: false
matrix:
java: [ 8, 17 ]
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/product-tests-basic-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
- '!presto-docs/**'
product-tests-basic-environment:
strategy:
fail-fast: false
matrix:
java: [ 8, 17 ]
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/product-tests-specific-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
- '!presto-docs/**'
product-tests-specific-environment1:
strategy:
fail-fast: false
matrix:
java: [ 8, 17 ]
runs-on: ubuntu-latest
Expand Down Expand Up @@ -84,6 +85,7 @@ jobs:

product-tests-specific-environment2:
strategy:
fail-fast: false
matrix:
java: [ 8, 17 ]
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/singlestore-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
- '!presto-docs/**'
singlestore-dockerized-tests:
strategy:
fail-fast: false
matrix:
java: [ 8, 17 ]
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/spark-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
- '!presto-docs/**'
spark-integration:
strategy:
fail-fast: false
matrix:
java: [ 8, 17 ]
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-other-modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
- '!presto-docs/**'
test-other-modules:
strategy:
fail-fast: false
matrix:
java: [ 8, 17 ]
runs-on: ubuntu-latest
Expand Down

0 comments on commit e6b7f1d

Please sign in to comment.