mirror of
https://github.com/varvet/pundit.git
synced 2022-11-09 12:30:11 -05:00
![Duncan Stuart](/assets/img/avatar_default.png)
The latest travis build distribution has a default java version of 11, which is incompatible with this version of JRuby. Specifying a compatible JDK version enables this JRuby to build successfully.
21 lines
446 B
YAML
21 lines
446 B
YAML
language: ruby
|
|
before_install:
|
|
- gem install bundler -v 1.17.3
|
|
|
|
matrix:
|
|
include:
|
|
- rvm: 2.5.1 # Pre-installed Ruby version
|
|
script: bundle exec rake rubocop # ONLY lint once, first
|
|
- rvm: 2.1
|
|
- rvm: 2.2
|
|
- rvm: 2.3.5
|
|
- rvm: 2.4.6
|
|
- rvm: 2.5.5
|
|
- rvm: 2.6.3
|
|
- rvm: jruby-9.1.8.0
|
|
env:
|
|
- JRUBY_OPTS="--debug"
|
|
jdk: openjdk8
|
|
- rvm: jruby-9.2.7.0
|
|
env:
|
|
- JRUBY_OPTS="--debug"
|