summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'