From 9963a9144ef9ef9d07482127bcad2e60e7678452 Mon Sep 17 00:00:00 2001 From: Lakshya Kapoor Date: Sun, 9 Aug 2020 22:11:59 -0700 Subject: [PATCH] Test against JRuby 9.2.13.0 --- .travis.yml | 2 +- appveyor.yml | 2 +- support/install_jruby.ps1 | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index e1c842ef..9792f765 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,7 +23,7 @@ matrix: env: RAKE_TASK=spec - rvm: 2.7 env: RAKE_TASK=rubocop - - rvm: jruby-9.2.11.1 + - rvm: jruby-9.2.13.0 jdk: openjdk8 env: RAKE_TASK=spec - rvm: 2.7 diff --git a/appveyor.yml b/appveyor.yml index 885820ce..b8bb4cb2 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -21,7 +21,7 @@ environment: RUBY_BIN: ruby RAKE_TASK: spec SCRIPT_CONTEXT: bundle exec - - RUBY_VERSION: jruby-9.2.11.1 + - RUBY_VERSION: jruby-9.2.13.0 RUBY_BIN: jruby RAKE_TASK: spec SCRIPT_CONTEXT: jruby -G -S diff --git a/support/install_jruby.ps1 b/support/install_jruby.ps1 index 3ff5b1c7..cd19f30b 100644 --- a/support/install_jruby.ps1 +++ b/support/install_jruby.ps1 @@ -1,5 +1,5 @@ -$downloadLink = "https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.11.1/jruby-dist-9.2.11.1-bin.zip" -$zipPath = "c:\jruby-dist-9.2.11.1-bin.zip" +$downloadLink = "https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.13.0/jruby-dist-9.2.13.0-bin.zip" +$zipPath = "c:\jruby-dist-9.2.13.0-bin.zip" Write-Host "Installing $($env:RUBY_VERSION)" -ForegroundColor cyan appveyor DownloadFile "$($downloadLink)" -FileName "$($zipPath)"