summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Preston <stuart@chef.io>2018-11-28 13:08:35 +0000
committerStuart Preston <stuart@chef.io>2018-11-28 13:08:35 +0000
commit7c190a22e0cf69bddaa44e89a518f84e49b713dc (patch)
tree08107a4734d4cff96b6ffcb4d76eae65ef2b5459
parent20ecce856bdb784a455281b61c8c22434eb8d883 (diff)
downloadchef-azurepipelines.tar.gz
Initial Azure Pipelines yaml commitazurepipelines
-rw-r--r--azure-pipelines.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
new file mode 100644
index 0000000000..bfbb61c815
--- /dev/null
+++ b/azure-pipelines.yml
@@ -0,0 +1,15 @@
+pool:
+ vmImage: 'Ubuntu 16.04'
+
+steps:
+- task: UseRubyVersion@0
+ inputs:
+ versionSpec: '>= 2.5'
+
+- script: |
+ gem install bundler
+ bundle install --retry=3 --jobs=4
+ displayName: 'bundle install'
+
+- script: bundle exec rake
+ displayName: 'bundle exec rake'