Skip to content

Commit

Permalink
Merge pull request #9 from fluent/appveyor-ruby-2.4
Browse files Browse the repository at this point in the history
Use Ruby 2.4 and 2.3 in AppVeyor
  • Loading branch information
repeatedly authored Jul 10, 2017
2 parents 02ff79f + ac5049f commit 690700a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ version: '{build}'

install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- "%devkit%\\devkitvars.bat"
- IF %ridk%==0 "%devkit%\\devkitvars.bat"
- ruby --version
- gem --version
- bundle install
- IF %ridk%==1 ridk.cmd exec bundle install
- IF %ridk%==0 bundle install
build: off
test_script:
- bundle exec rake test
Expand All @@ -23,5 +24,11 @@ environment:
matrix:
- ruby_version: "23-x64"
devkit: C:\Ruby23-x64\DevKit
ridk: 0
- ruby_version: "23"
devkit: C:\Ruby23\DevKit
ridk: 0
- ruby_version: "24-x64"
ridk: 1
- ruby_version: "24"
ridk: 1

0 comments on commit 690700a

Please sign in to comment.