Skip to content

Commit 553c171

Browse files
committed
Set up CI with Azure Pipelines
[skip ci]
1 parent 72e844d commit 553c171

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

azure-pipelines.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Maven
2+
# Build your Java project and run tests with Apache Maven.
3+
# Add steps that analyze code, save build artifacts, deploy, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/languages/java
5+
6+
trigger:
7+
- master
8+
9+
pool:
10+
vmImage: ubuntu-latest
11+
12+
steps:
13+
- task: Maven@3
14+
inputs:
15+
mavenPomFile: 'pom.xml'
16+
mavenOptions: '-Xmx3072m'
17+
javaHomeOption: 'JDKVersion'
18+
jdkVersionOption: '1.8'
19+
jdkArchitectureOption: 'x64'
20+
publishJUnitResults: true
21+
testResultsFiles: '**/surefire-reports/TEST-*.xml'
22+
goals: 'package'

0 commit comments

Comments
 (0)