Skip to content

Commit 0165215

Browse files
committed
Merge pull request #1706 from mtsmfm/fix-appveyor-setting-for-jruby
Fix AppVeyor settings for JRuby.
2 parents bade0f2 + d9eac2a commit 0165215

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

appveyor.yml

Lines changed: 6 additions & 8 deletions
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)