Skip to content

Commit d9eac2a

Browse files
committed
Fix appveyor setting for JRuby
Path for JRuby is not correct so tests run on CRuby 1.9 till now...
1 parent bade0f2 commit d9eac2a

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

Diff for: appveyor.yml

+6-8
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,19 @@ version: '{build}'
33
skip_tags: true
44

55
environment:
6+
JRUBY_OPTS: "--dev -J-Xmx1024M --debug"
67
matrix:
7-
- ruby_version: "21"
8-
- ruby_version: "21-x64"
9-
- ruby_version: "jruby-9.0.4.0"
8+
- ruby_version: "Ruby21"
9+
- ruby_version: "Ruby21-x64"
10+
- ruby_version: "jruby-9.0.0.0"
1011

1112
cache:
1213
- vendor/bundle
1314

1415
install:
15-
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
16-
- ruby --version
17-
- gem --version
16+
- SET PATH=C:\%ruby_version%\bin;%PATH%
1817
- gem install bundler
19-
- bundler --version
20-
- bundle platform
18+
- bundle env
2119
- bundle install --path=vendor/bundle --retry=3 --jobs=3
2220

2321
test_script:

0 commit comments

Comments
 (0)