summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSHIBATA Hiroshi <hsbt@ruby-lang.org>2019-03-01 10:01:48 +0900
committerSHIBATA Hiroshi <hsbt@ruby-lang.org>2019-03-01 10:01:48 +0900
commitb9c6ed7b6a1fd17bc115bc0de333142b73225334 (patch)
treeca406dd873adea6dd4e9458d86b69964ad3a3e97
parentdf1d3a0a49f8d461f309c3af81b9603528403ced (diff)
downloadpsych-b9c6ed7b6a1fd17bc115bc0de333142b73225334.tar.gz
Try to test with macOS.
-rw-r--r--azure-pipelines.yml30
1 files changed, 11 insertions, 19 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index c23ced4..1d3ec00 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -1,19 +1,11 @@
-# Starter pipeline
-# Start with a minimal pipeline that you can customize to build and deploy your code.
-# Add steps that build, run tests, deploy, and more:
-# https://aka.ms/yaml
-
-trigger:
-- master
-
-pool:
- vmImage: 'Ubuntu-16.04'
-
-steps:
-- script: echo Hello, world!
- displayName: 'Run a one-line script'
-
-- script: |
- echo Add other tasks to build, test, and deploy your project.
- echo See https://aka.ms/yaml
- displayName: 'Run a multi-line script'
+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'