From ddb92416eba356dd69ecfc4291c7ec68984b56a6 Mon Sep 17 00:00:00 2001 From: SHIBATA Hiroshi Date: Thu, 28 Feb 2019 20:40:44 +0900 Subject: [PATCH 1/2] Set up CI with Azure Pipelines --- azure-pipelines.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000000..c23ced43ca --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,19 @@ +# 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' From 79234db7f14b2d7d382019bef3e83a9594271755 Mon Sep 17 00:00:00 2001 From: SHIBATA Hiroshi Date: Thu, 28 Feb 2019 20:42:21 +0900 Subject: [PATCH 2/2] Try to test with macOS. --- azure-pipelines.yml | 30 +++++++++++------------------- 1 file changed, 11 insertions(+), 19 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c23ced43ca..1d3ec008ec 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'