1
0
mirror of https://github.com/meineerde/rackstash.git synced 2025-10-17 14:01:01 +00:00

Remove support for JRuby 9.0.x

This commit is contained in:
Holger Just 2020-07-10 19:54:49 +02:00
parent 22bcd119e4
commit 26d106cacb
2 changed files with 3 additions and 11 deletions

View File

@ -29,13 +29,10 @@ matrix:
- rvm: 2.1.10
env: RACK_VERSION=1.4.5
# Older JRuby versions
# Older JRuby version
- rvm: jruby-9.1.17.0
jdk: openjdk8
- rvm: jruby-9.0.5.0
jdk: openjdk8
# HEAD-Rubies (might break)
- rvm: ruby-head
- rvm: jruby-head
@ -52,7 +49,7 @@ before_install:
# older version of bundler for older Ruby versions since they can't / won't
# check their required versions on their own.
- |
if [[ "$(rvm current)" =~ ^(ruby-2\.[012]|jruby-9\.0) ]]; then
if [[ "$(rvm current)" =~ ^ruby-2\.[012] ]]; then
gem install bundler -v '< 2.0'
else
gem install bundler

View File

@ -11,7 +11,6 @@ environment:
- RUBY_VERSION: trunk
- RUBY_VERSION: jruby-9.2.9.0
- RUBY_VERSION: jruby-9.1.17.0
- RUBY_VERSION: jruby-9.0.5.0
matrix:
allow_failures:
@ -38,12 +37,8 @@ init:
$env:PATH = "C:\jruby-$jruby_version\bin;" + $env:PATH
if ($jruby_version.StartsWith('9.0')) {
gem install bundler -v "< 2.0"
} else {
gem install bundler
}
}
Else {
$env:PATH = "C:\Ruby" + $env:RUBY_VERSION + "\bin;" + $env:PATH
}