Skip to content

Commit 5ee83f5

Browse files
authored
Merge pull request #3608 from Earlopain/fix-jruby-ci
Fix jruby CI
2 parents 4052d93 + afe60c4 commit 5ee83f5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
matrix:
8585
target:
8686
- { ruby: "head", gemfile: "3.5" }
87-
- { ruby: "jruby", gemfile: "jruby" }
87+
- { ruby: "jruby-10.0.0.0", gemfile: "jruby" } # https://github.com/jruby/jruby/issues/8923
8888
- { ruby: "truffleruby", gemfile: "truffleruby" }
8989
runs-on: ubuntu-latest
9090
env:
@@ -255,7 +255,7 @@ jobs:
255255
- { ruby: "3.3", os: "ubuntu-latest", gemfile: "3.3" }
256256
- { ruby: "3.4", os: "ubuntu-latest", gemfile: "3.4" }
257257
- { ruby: "head", os: "ubuntu-latest", gemfile: "3.5" }
258-
- { ruby: "jruby", os: "ubuntu-latest", gemfile: "jruby" }
258+
- { ruby: "jruby-10.0.0.0", os: "ubuntu-latest", gemfile: "jruby" } # https://github.com/jruby/jruby/issues/8923
259259
- { ruby: "truffleruby", os: "ubuntu-latest", gemfile: "truffleruby" }
260260

261261
- { ruby: "2.7", os: "macos-latest", gemfile: "2.7" }
@@ -265,7 +265,7 @@ jobs:
265265
- { ruby: "3.3", os: "macos-latest", gemfile: "3.3" }
266266
- { ruby: "3.4", os: "macos-latest", gemfile: "3.4" }
267267
- { ruby: "head", os: "macos-latest", gemfile: "3.5" }
268-
- { ruby: "jruby", os: "macos-latest", gemfile: "jruby" }
268+
- { ruby: "jruby-10.0.0.0", os: "macos-latest", gemfile: "jruby" } # https://github.com/jruby/jruby/issues/8923
269269
- { ruby: "truffleruby", os: "macos-latest", gemfile: "truffleruby" }
270270

271271
- { ruby: "2.7", os: "windows-latest", gemfile: "2.7" }
@@ -275,7 +275,7 @@ jobs:
275275
- { ruby: "3.3", os: "windows-latest", gemfile: "3.3" }
276276
- { ruby: "3.4", os: "windows-latest", gemfile: "3.4" }
277277
# - { ruby: "head", os: "windows-latest", gemfile: "3.5" } <-- failing certs, temporarily disabled
278-
- { ruby: "jruby", os: "windows-latest", gemfile: "jruby" }
278+
- { ruby: "jruby-10.0.0.0", os: "windows-latest", gemfile: "jruby" } # https://github.com/jruby/jruby/issues/8923
279279
env:
280280
BUNDLE_GEMFILE: gemfiles/${{ matrix.target.gemfile }}/Gemfile
281281
runs-on: ${{ matrix.target.os }}

gemfiles/jruby/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
source "https://rubygems.org"
44

5-
ruby "~> 3.4.2", engine: "jruby", engine_version: "~> 10.0.0.0"
5+
ruby "~> 3.4.2", engine: "jruby", engine_version: "~> 10.0.0"
66

77
gemspec path: "../.."
88

0 commit comments

Comments
 (0)