Commit 69f4d46
committed
Update jruby version
The jruby 9.2 builds were failing during `bundle install` with the following error:
```
bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
256Error occurred during initialization of boot layer
257java.lang.module.FindException: Unable to derive module descriptor for /home/travis/.rvm/rubies/jruby-9.2.0.0/lib/jruby.jar
258Caused by: java.lang.module.InvalidModuleDescriptorException: Test.class found in top-level directory (unnamed package not allowed in module)
```
After updating jruby to 9.2.7, the builds started failing with the
following:
```
You must use Bundler 2 or greater with this lockfile.
349The command "bin/test" exited with 20.
```
Everything worked correctly after updating Bundler inside the
`before_install` hook.
Ref: https://travis-ci.community/t/unable-to-test-against-jruby-9-2-7-0/31381 parent bcc1197 commit 69f4d46
1 file changed
Lines changed: 4 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | | - | |
| 11 | + | |
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
| 31 | + | |
| 32 | + | |
31 | 33 | | |
32 | 34 | | |
33 | 35 | | |
| |||
0 commit comments