mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-27 01:45:49 +00:00
azure-pipelines.yml
This commit is contained in:
parent
9ecdc1111e
commit
514f9663d3
1 changed files with 23 additions and 0 deletions
23
azure-pipelines.yml
Normal file
23
azure-pipelines.yml
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
---
|
||||||
|
pool:
|
||||||
|
name: "Azure Pipelines"
|
||||||
|
vmImage: ubuntu-latest
|
||||||
|
name: springpet
|
||||||
|
trigger:
|
||||||
|
main
|
||||||
|
stages:
|
||||||
|
- stage: stage1
|
||||||
|
displayName: spring-stage1
|
||||||
|
jobs:
|
||||||
|
- job: job1
|
||||||
|
displayName: spring-job1
|
||||||
|
steps:
|
||||||
|
- task: Maven@3
|
||||||
|
inputs:
|
||||||
|
mavenPOMFile: 'pom.xml'
|
||||||
|
goals: 'package'
|
||||||
|
publishJUnitResults: true
|
||||||
|
testResultsFiles: '**/surefire-reports/TEST-*.xml'
|
||||||
|
javaHomeOption: 'JDKVersion'
|
||||||
|
jdkVersionOption: 1.11
|
||||||
|
|
Loading…
Reference in a new issue