Skip to content

Commit

Permalink
Set up CI with Azure Pipelines [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
hcoles committed Mar 27, 2019
1 parent dfc57a3 commit d97c7d6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
trigger:
- master

strategy:
matrix:
linux:
imageName: 'Ubuntu-16.04'
mac:
imageName: 'macos-10.13'
windows:
imageName: 'vs2017-win2016'

pool:
vmImage: $(imageName)

steps:
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
mavenOptions: '-Xmx3072m'
javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.8'
jdkArchitectureOption: 'x64'
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'
goals: 'verify'

0 comments on commit d97c7d6

Please sign in to comment.