Skip to content

Commit

Permalink
Fix appveyor setting for JRuby
Browse files Browse the repository at this point in the history
Path for JRuby is not correct so tests run on CRuby 1.9 till now...
  • Loading branch information
mtsmfm committed Apr 24, 2016
1 parent a50cd44 commit a555028
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
- bundler env
- bundle install --path=vendor/bundle --retry=3 --jobs=3

test_script:
Expand Down

0 comments on commit a555028

Please sign in to comment.