diff options
author | Kartik Null Cating-Subramanian <ksubramanian@chef.io> | 2015-09-08 15:17:08 -0400 |
---|---|---|
committer | Kartik Null Cating-Subramanian <ksubramanian@chef.io> | 2015-09-10 13:04:17 -0400 |
commit | 3751f8d4bca04834e4660be9319f0dd006b79454 (patch) | |
tree | 59ccbd98b3a8b133e5bbc57cc8906e99008f1864 /appveyor.yml | |
parent | b8625814b1065da1d8e1b44523ef50ed7d8f57f0 (diff) | |
download | chef-3751f8d4bca04834e4660be9319f0dd006b79454.tar.gz |
Add ruby 2.1 and 2.2 to appveyorksubrama/appveyor
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 26fa871923..b168c4deee 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,6 +8,10 @@ environment: matrix: - ruby_version: "200" - ruby_version: "200-x64" + - ruby_version: "21" + - ruby_version: "21-x64" + - ruby_version: "22" + - ruby_version: "22-x64" clone_folder: c:\projects\chef clone_depth: 1 @@ -15,11 +19,20 @@ skip_tags: true branches: only: - master - - 12.4-stable cache: - C:\Ruby200\lib\ruby\gems\2.0.0 - C:\Ruby200\bin + - C:\Ruby200-x64\lib\ruby\gems\2.0.0 + - C:\Ruby200\bin + - C:\Ruby21\lib\ruby\gems\2.1.0 + - C:\Ruby21\bin + - C:\Ruby21-x64\lib\ruby\gems\2.1.0 + - C:\Ruby21\bin + - C:\Ruby22\lib\ruby\gems\2.2.0 + - C:\Ruby22\bin + - C:\Ruby22-x64\lib\ruby\gems\2.2.0 + - C:\Ruby22\bin install: - systeminfo |