From fb719df5a87ade93f05e9a1e03b84c12cf196f20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20M=2E=20D=2E=20Moura?= Date: Thu, 20 Aug 2015 23:28:04 -0300 Subject: [PATCH] adding appveyor.yml file --- appveyor.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..9fb578c9 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,24 @@ +version: '{build}' + +skip_tags: true + +environment: + matrix: + - ruby_version: "193" + - ruby_version: "193-x64" + - ruby_version: "200" + - ruby_version: "200-x64" + - ruby_version: "21" + - ruby_version: "21-x64" + - ruby_version: "22" + - ruby_version: "22-x64" + +install: + - SET PATH=C:\Ruby%ruby_version%\bin;%PATH% + - gem install bundler + - bundle install --retry=3 + +test_script: + - RAILS_ENV=test bundle exec rake + +build: off