From d9eac2a4bd17545fc49ac9263204235b03653ef4 Mon Sep 17 00:00:00 2001 From: Fumiaki MATSUSHIMA Date: Sun, 24 Apr 2016 22:25:02 +0900 Subject: [PATCH] Fix appveyor setting for JRuby Path for JRuby is not correct so tests run on CRuby 1.9 till now... --- appveyor.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index aed5f761..9cd4fd0d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,21 +3,19 @@ version: '{build}' skip_tags: true environment: + JRUBY_OPTS: "--dev -J-Xmx1024M --debug" matrix: - - ruby_version: "21" - - ruby_version: "21-x64" - - ruby_version: "jruby-9.0.4.0" + - ruby_version: "Ruby21" + - ruby_version: "Ruby21-x64" + - ruby_version: "jruby-9.0.0.0" cache: - vendor/bundle install: - - SET PATH=C:\Ruby%ruby_version%\bin;%PATH% - - ruby --version - - gem --version + - SET PATH=C:\%ruby_version%\bin;%PATH% - gem install bundler - - bundler --version - - bundle platform + - bundle env - bundle install --path=vendor/bundle --retry=3 --jobs=3 test_script: