Skip to content

Commit 0fc34fd

Browse files
committed
tests: Run tests on Java 25
1 parent b76ab2d commit 0fc34fd

4 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,13 @@ on:
1010

1111
pull_request:
1212

13-
env:
14-
JRUBY_OPTS: -J-Xmx896M
15-
1613
jobs:
1714
ci:
1815
runs-on: ubuntu-22.04
1916

2017
strategy:
2118
matrix:
22-
java-version: [8, 21]
19+
java-version: [8, 21, 25]
2320
ruby-version: [jruby-9.4, jruby-10]
2421
task: ['', integration]
2522
exclude:

Mavenfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,12 @@ scope :provided do
2828
jar 'org.eclipse.jetty:jetty-webapp', '${jetty.version}'
2929
end
3030

31+
plugin :clean, '3.5.0'
3132
plugin :compiler, '3.14.1', :release => '8'
3233
plugin :resources, '3.3.1'
33-
plugin :jar, '2.6'
34+
plugin :jar, '3.4.2' do
35+
execute_goals(:phase => 'none') # Avoid a duplicate execution with that defined by the :gemspec directive
36+
end
3437
plugin :install, '3.1.4'
3538

3639
gem 'bundler', '${bundler.version}'

spec/rails7_stub/Gemfile.lock

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,11 @@ GEM
191191

192192
PLATFORMS
193193
universal-java-1.8
194+
universal-java-8
194195
universal-java-11
195196
universal-java-17
196197
universal-java-21
197-
universal-java-8
198+
universal-java-25
198199

199200
DEPENDENCIES
200201
activerecord-jdbcpostgresql-adapter (~> 72.1)

spec/sample_bundler/Gemfile.lock

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ GEM
55

66
PLATFORMS
77
universal-java-1.8
8+
universal-java-8
89
universal-java-11
910
universal-java-17
1011
universal-java-21
11-
universal-java-8
12+
universal-java-25
1213

1314
DEPENDENCIES
1415
rake (= 13.3.0)

0 commit comments

Comments
 (0)