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