appveyor.yml
version: "master-{build}"
os: Windows Server 2012 R2
platform:
- x64
environment:
matrix:
- ruby_version: "23-x64"
- ruby_version: "23"
clone_depth: 1
skip_tags: true
skip_branch_with_pr: true
branches:
only:
- master
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- ruby --version
- gem update --system || gem update --system || gem update --system
- gem install bundler --quiet --no-ri --no-rdoc || gem install bundler --quiet --no-ri --no-rdoc || gem install bundler --quiet --no-ri --no-rdoc
- update_rubygems
- gem --version
- bundler --version
- SET BUNDLE_IGNORE_CONFIG=true
- SET CI=true
- SET BUNDLE_WITHOUT=development:guard:maintenance:tools:integration:changelog:docgen:travis:style:omnibus_package:aix:bsd:linux:mac_os_x:solaris
build_script:
- bundle install || bundle install || bundle install
test_script:
- SET SPEC_OPTS=--format progress
- bundle exec thor spec:all