Skip to content

Commit 16c03be

Browse files
authored
Disable jruby requirement in CI while experimental (#578)
* dont fail on jruby fail * remarks * remarks
1 parent f572de2 commit 16c03be

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,13 @@ jobs:
3131
- '3.3'
3232
- '3.2'
3333
- '3.1'
34-
- 'jruby-9.4'
34+
- 'jruby-10.0'
3535
include:
3636
- ruby: '3.4'
3737
coverage: 'true'
38+
- ruby: 'jruby-10.0'
39+
continue-on-error: true
40+
3841
steps:
3942
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4043
with:
@@ -56,6 +59,7 @@ jobs:
5659
- name: Run all specs
5760
env:
5861
GITHUB_COVERAGE: ${{matrix.coverage}}
62+
continue-on-error: ${{ matrix.continue-on-error || false }} # Use the matrix value if present
5963
run: |
6064
set -e
6165
bundle install --jobs 4 --retry 3
@@ -75,6 +79,9 @@ jobs:
7579
- '3.2'
7680
- '3.1'
7781
- 'jruby-9.4'
82+
include:
83+
- ruby: 'jruby-10.0'
84+
continue-on-error: true
7885
steps:
7986
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
8087

@@ -85,6 +92,7 @@ jobs:
8592
bundler-cache: false
8693

8794
- name: Build rdkafka-ruby
95+
continue-on-error: ${{ matrix.continue-on-error || false }}
8896
run: |
8997
set -e
9098
bundle install --jobs 4 --retry 3

0 commit comments

Comments
 (0)