Skip to content

Commit

Permalink
Add appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mhuggins committed Dec 14, 2015
1 parent 942d377 commit 4ab6697
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ task :bench do
end

task :default => :test

desc 'CI test task'
task :ci => :default
29 changes: 29 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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"

cache:
- vendor/bundle

install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- ruby --version
- gem --version
- gem install bundler
- bundler --version
- bundle platform
- bundle install --path=vendor/bundle --retry=3 --jobs=3

test_script:
- bundle exec rake ci

build: off

0 comments on commit 4ab6697

Please sign in to comment.