mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-29 18:55:49 +00:00
Set up CI with Azure Pipelines
[skip ci]
This commit is contained in:
parent
ca055dbbe1
commit
d7b982cca7
1 changed files with 20 additions and 0 deletions
20
azure-pipelines.yml
Normal file
20
azure-pipelines.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Starter pipeline
|
||||
# Start with a minimal pipeline that you can customize to build and deploy your code.
|
||||
# Add steps that build, run tests, deploy, and more:
|
||||
# https://aka.ms/yaml
|
||||
|
||||
trigger:
|
||||
- main
|
||||
|
||||
pool:
|
||||
vmImage: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- task: Maven@3
|
||||
inputs:
|
||||
mavenPomFile: 'pom.xml'
|
||||
goals: 'package'
|
||||
publishJUnitResults: true
|
||||
testResultsFiles: '**/surefire-reports/TEST-*.xml'
|
||||
jdkVersionOption: '1.17'
|
||||
displayName: 'BuildTask'
|
Loading…
Reference in a new issue