2016-02-05 20:51:15 -05:00
|
|
|
---
|
|
|
|
|
|
|
|
version: "{build}"
|
|
|
|
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
|
|
|
|
install:
|
|
|
|
- set PATH=C:\Ruby%ruby_version%\bin;%PATH%
|
|
|
|
- echo %PATH%
|
|
|
|
|
|
|
|
- ruby --version
|
|
|
|
- where ruby
|
|
|
|
|
|
|
|
- gem update --system --no-document
|
|
|
|
- gem --version
|
|
|
|
- where gem
|
|
|
|
|
|
|
|
- gem install bundler --no-document
|
|
|
|
- bundler --version
|
|
|
|
- where bundler
|
|
|
|
|
|
|
|
- bundle install --jobs 3 --retry 3
|
|
|
|
|
|
|
|
build_script:
|
2016-02-06 01:28:06 -05:00
|
|
|
- git submodule init
|
|
|
|
- git submodule update
|
2016-02-05 20:51:15 -05:00
|
|
|
- bundle exec rake compile
|
|
|
|
|
|
|
|
test_script:
|
|
|
|
- bundle exec rake test
|
|
|
|
|
|
|
|
environment:
|
|
|
|
matrix:
|
|
|
|
- ruby_version: 21-x64
|
|
|
|
- ruby_version: '22'
|
|
|
|
- ruby_version: 22-x64
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
fast_finish: true
|