From cb581227309dfdfc76bb03a6eb4a811a3b55e202 Mon Sep 17 00:00:00 2001 From: Andy Campbell <47190204+acampbel@users.noreply.github.com> Date: Wed, 13 Feb 2019 22:55:56 -0500 Subject: [PATCH] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f656ea78..8bfafa84 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -3,11 +3,18 @@ # Add steps that analyze code, save build artifacts, deploy, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/java -trigger: - - master +strategy: + matrix: + linux: + imageName: 'ubuntu-16.04' + mac: + imageName: 'macos-10.13' + windows: + imageName: 'vs2017-win2016' pool: - vmImage: 'Ubuntu-16.04' + vmImage: $(imageName) + steps: - task: Maven@3