diff --git a/appveyor.yml b/appveyor.yml index c788fcb..86bb7ba 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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 @@ -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