Skip to content
This repository was archived by the owner on Mar 2, 2022. It is now read-only.

Commit 9b3d487

Browse files
authored
Merge pull request #1 from hosomi/azure-pipelines
Set up CI with Azure Pipelines
2 parents 68e679a + 06e65f8 commit 9b3d487

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.11'
19+
jdkArchitectureOption: 'x64'
20+
publishJUnitResults: true
21+
testResultsFiles: '**/surefire-reports/TEST-*.xml'
22+
goals: 'package'

0 commit comments

Comments
 (0)