Skip to content

Commit

Permalink
Disable CI against JRuby builds
Browse files Browse the repository at this point in the history
Rails 7.0 requires Ruby 2.7 or higeher.
CI pending the following matrix until JRuby 9.4 that supports Ruby 2.7 will be released.
jruby/jruby#6464
  • Loading branch information
koic committed Feb 5, 2021
1 parent 532e45c commit 3d11748
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ jobs:
continue-on-error: true
strategy:
matrix:
# Rails 7.0 requires Ruby 2.7 or higeher.
# CI pending the following matrix until JRuby 9.4 that supports Ruby 2.7 will be released.
# https://github.com/jruby/jruby/issues/6464
# - jruby,
# - jruby-head
ruby: [
'3.0',
'2.7',
jruby,
jruby-head
'2.7'
]
env:
ORACLE_HOME: /usr/lib/oracle/18.5/client64
Expand Down
15 changes: 9 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,17 @@ language: ruby
rvm:
- 3.0.0
- 2.7.2
- jruby-9.2.14.0
- ruby-head
- jruby-head
# Rails 7.0 requires Ruby 2.7 or higeher.
# CI pending until JRuby 9.4 that supports Ruby 2.7 will be released.
# https://github.com/jruby/jruby/issues/6464
# - jruby-9.4.0
# - jruby-head

matrix:
allow_failures:
- rvm: jruby-9.2.14.0
- rvm: jruby-head
# matrix:
# allow_failures:
# - rvm: jruby-9.4.0
# - rvm: jruby-head

notifications:
email: false

0 comments on commit 3d11748

Please sign in to comment.