summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis Lavena <luislavena@gmail.com>2014-09-08 23:39:34 -0300
committerLuis Lavena <luislavena@gmail.com>2014-09-08 23:39:34 -0300
commit4ccb13effa9c0403fdc479a39b079d49d27a0eac (patch)
treed035575b0f971e86d6dec9dd11b30315a9cf2291
parent3f1450389eeb7061ecef157c50627e9163736ae9 (diff)
downloadrake-compiler-4ccb13effa9c0403fdc479a39b079d49d27a0eac.tar.gz
Add basic Windows CI using AppVeyor
[skip ci]
-rw-r--r--appveyor.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..30bc9ab
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,22 @@
+---
+version: "{build}"
+branches:
+ only:
+ - master
+clone_depth: 10
+install:
+ - SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
+ - ruby --version
+ - gem --version
+ - gem install bundler --quiet --no-ri --no-rdoc
+ - bundler --version
+ - bundle install
+build: off
+test_script:
+ - bundle exec rake spec
+
+environment:
+ matrix:
+ - ruby_version: "193"
+ - ruby_version: "200"
+ - ruby_version: "200-x64"