summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSHIBATA Hiroshi <hsbt@ruby-lang.org>2019-03-01 10:30:31 +0900
committerGitHub <noreply@github.com>2019-03-01 10:30:31 +0900
commit4204f96dbee91a4883d2a7b85c3070c18e9ce9dc (patch)
treeca406dd873adea6dd4e9458d86b69964ad3a3e97
parent36499ee2bcad889741444205949ca9fa7dc05d6b (diff)
parentb9c6ed7b6a1fd17bc115bc0de333142b73225334 (diff)
downloadpsych-4204f96dbee91a4883d2a7b85c3070c18e9ce9dc.tar.gz
Merge pull request #391 from ruby/azure-pipelines
Set up CI with Azure Pipelines
-rw-r--r--azure-pipelines.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
new file mode 100644
index 0000000..1d3ec00
--- /dev/null
+++ b/azure-pipelines.yml
@@ -0,0 +1,11 @@
+jobs:
+- job: macOS
+ pool:
+ vmImage: 'macos-10.13'
+ steps:
+ - script: |
+ gem install bundler
+ bundle install --retry=3 --jobs=4
+ displayName: 'bundle install'
+ - script: rake
+ displayName: 'rake'