diff options
author | azure-pipelines[bot] <azure-pipelines[bot]@users.noreply.github.com> | 2019-02-10 20:26:19 +0000 |
---|---|---|
committer | azure-pipelines[bot] <azure-pipelines[bot]@users.noreply.github.com> | 2019-02-10 20:26:19 +0000 |
commit | 5ecd384edd7d2ce8f9474c37ca798200678ca56d (patch) | |
tree | 4311e478d5ba2c6cf5407e6e9162d975c5e9d75c | |
parent | 0ca2f4ea781abf697c484df6ba26feeded744854 (diff) | |
download | bundler-azure-pipelines.tar.gz |
Set up CI with Azure Pipelinesazure-pipelines
-rw-r--r-- | azure-pipelines.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000000..6cd30e84d3 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,23 @@ +# Ruby +# Package your Ruby project. +# Add steps that install rails, analyze code, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/ruby + +trigger: +- master + +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' |