diff options
author | Jay Mundrawala <jdmundrawala@gmail.com> | 2014-12-15 21:56:21 -0800 |
---|---|---|
committer | Bryan McLellan <btm@loftninjas.org> | 2015-01-20 16:35:14 -0500 |
commit | ae2c7e958f552a6d1747eb940c7d70c7a9d76317 (patch) | |
tree | c4fec1a1ffe0f1770826ad2138f59a7c800322b3 | |
parent | b1dedaa6e1c3b8f70c16895c7c221286409f9564 (diff) | |
download | chef-ae2c7e958f552a6d1747eb940c7d70c7a9d76317.tar.gz |
Adding 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 |