From 02c22afcefd20ab4042137faba7626f86974e2ff Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Mon, 27 May 2019 15:03:47 -0400 Subject: [PATCH] Update and modernize azure templates Signed-off-by: Dan Ryan --- .azure-pipelines/steps/run-tests-linux.yml | 1 + azure-pipelines.yml | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/.azure-pipelines/steps/run-tests-linux.yml b/.azure-pipelines/steps/run-tests-linux.yml index 02ea8cf8..5bea77ca 100644 --- a/.azure-pipelines/steps/run-tests-linux.yml +++ b/.azure-pipelines/steps/run-tests-linux.yml @@ -1,3 +1,4 @@ +steps: - script: | # Fix Git SSL errors git submodule sync && git submodule update --init --recursive diff --git a/azure-pipelines.yml b/azure-pipelines.yml index bf9d4a86..28c23a9f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -33,7 +33,11 @@ jobs: maxParallel: 4 steps: - template: .azure-pipelines/steps/run-tests.yml + parameters: + vmImage: 'Ubuntu-16.04' - template: .azure-pipelines/jobs/run-vendor-scripts.yml + parameters: + vmImage: 'Ubuntu-16.04' - job: TestWindows pool: @@ -52,6 +56,8 @@ jobs: maxParallel: 4 steps: - template: .azure-pipelines/steps/run-tests.yml + parameters: + vmImage: windows-2019 - job: TestMacOS pool: @@ -67,3 +73,5 @@ jobs: maxParallel: 4 steps: - template: .azure-pipelines/steps/run-tests.yml + parameters: + vmImage: macOS-10.13