Skip to content

Commit 4575282

Browse files
yahondaclaude
andcommitted
Set continue-on-error: false for CI workflows in this PR
Flip continue-on-error from true to false on the test, test_11g, test_11g_ojdbc11, and jruby_head workflows so that a failed CI job actually fails the suite. continue-on-error: true makes job results "green even when red", and in practice failures under that mode tend to be ignored — defeating the purpose of running the job at all. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 6395e8e commit 4575282

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/jruby_head.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build:
99

1010
runs-on: ubuntu-latest
11-
continue-on-error: true
11+
continue-on-error: false
1212
strategy:
1313
matrix:
1414
ruby: [

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build:
99

1010
runs-on: ubuntu-latest
11-
continue-on-error: true
11+
continue-on-error: false
1212
strategy:
1313
matrix:
1414
ruby: [

.github/workflows/test_11g.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
1313

1414
runs-on: ubuntu-latest
15-
continue-on-error: true
15+
continue-on-error: false
1616
strategy:
1717
matrix:
1818
ruby: [

.github/workflows/test_11g_ojdbc11.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
1313

1414
runs-on: ubuntu-latest
15-
continue-on-error: true
15+
continue-on-error: false
1616
strategy:
1717
matrix:
1818
ruby: [

0 commit comments

Comments
 (0)