File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,15 @@ jobs:
21
21
matrix :
22
22
java-version : [8, 21]
23
23
ruby-version : [jruby-9.4, jruby-10]
24
+ bundler-version : [2.6.3, 2.7.1]
24
25
task : ['', integration]
25
26
exclude :
26
27
# JRuby 10 requires Java 21 minimum
27
28
- ruby-version : jruby-10
28
29
java-version : 8
30
+ # Bundler 2.7.1 requires Ruby 3.2
31
+ - ruby-version : jruby-9.4
32
+ bundler-version : 2.7.1
29
33
30
34
fail-fast : false
31
35
51
55
- name : Remove jruby-launcher # not sure where this is coming from but causes some specs to fail
52
56
run : gem uninstall -a jruby-launcher
53
57
58
+ - name : Remove jruby-launcher # not sure where this is coming from but causes some specs to fail
59
+ run : gem install bundler -v ${{ matrix.bundler-version }}
60
+
54
61
- name : Install dependencies
55
- run : bundle install --jobs=3 --retry=3
62
+ run : bundle _${{ matrix.bundler-version }}_ install --jobs=3 --retry=3
56
63
57
64
- name : Run tests
58
- run : bundle exec rake ${{ matrix.task }}
65
+ run : bundle _${{ matrix.bundler-version }}_ exec rake ${{ matrix.task }}
You can’t perform that action at this time.
0 commit comments