diff options
author | Jay Mundrawala <jdmundrawala@gmail.com> | 2014-12-15 21:56:21 -0800 |
---|---|---|
committer | Bryan McLellan <btm@loftninjas.org> | 2014-12-16 13:40:19 -0500 |
commit | 5a1fab432fa86aa716a641883636db1776a3734e (patch) | |
tree | 6d709faa84758972c69725e694fe9775a351852b /appveyor.yml | |
parent | 1d5b9bf57df6812b6f6a2961d0995aa6c2d8f695 (diff) | |
download | chef-5a1fab432fa86aa716a641883636db1776a3734e.tar.gz |
Adding appveyor.yml
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000000..24a1936bb4 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,32 @@ +version: "{build}" + +os: Windows Server 2012 +platform: + - x64 + +environment: + matrix: + - ruby_version: "200" + +clone_folder: c:\projects\chef +clone_depth: 1 +skip_tags: true +branches: + only: + - master + - 12-stable + +install: + - winrm quickconfig -q + - SET PATH=C:\Ruby%ruby_version%\bin;%PATH% + - echo %PATH% + - ruby --version + - gem --version + - gem install bundler --quiet --no-ri --no-rdoc + - bundler --version + +build_script: + - bundle install + +test_script: + - bundle exec rake spec |