version: "{build}" os: Windows Server 2012 platform: - x64 environment: matrix: - RUBY_VERSION: 23 - RUBY_VERSION: 22 clone_folder: c:\projects\omnibus clone_depth: 1 skip_tags: true branches: only: - master install: - SET PATH=C:\Ruby%RUBY_VERSION%\bin;C:\Ruby23-x64\DevKit\mingw\bin;%PATH% - echo %PATH% - ruby --version - gem --version - gem install bundler -v 1.10.6 --quiet --no-ri --no-rdoc - bundler --version - cp C:\Ruby23-x64\DevKit\mingw\bin\bsdtar.exe C:\Ruby23-x64\DevKit\mingw\bin\tar.exe - appveyor DownloadFile http://curl.haxx.se/ca/cacert.pem -FileName C:\cacert.pem - set SSL_CERT_FILE=C:\cacert.pem - git config --global user.email "clouseau@chef.io" - git config --global user.name "Pink Panther" build_script: - bundle install test_script: - bundle exec rake unit - bundle exec rake functional - bundle exec rake acceptance