mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-26 17:35:49 +00:00
Set up CI with Azure Pipelines
[skip ci]
This commit is contained in:
parent
f2d9c9b63f
commit
1371f700c5
1 changed files with 24 additions and 0 deletions
24
azure-pipelines.yml
Normal file
24
azure-pipelines.yml
Normal file
|
@ -0,0 +1,24 @@
|
|||
|
||||
---
|
||||
pool:
|
||||
name: "Azure Pipelines"
|
||||
vmImage: 'ubuntu-latest'
|
||||
|
||||
trigger:
|
||||
- main
|
||||
|
||||
stages:
|
||||
- stage: BuildStage
|
||||
displayName: CI
|
||||
jobs:
|
||||
- job: mavenjob
|
||||
displayName: maven
|
||||
steps:
|
||||
- task: Maven@3
|
||||
inputs:
|
||||
mavenPomFile: 'pom.xml'
|
||||
goals: 'package'
|
||||
publishJUnitResults: true
|
||||
testResultsFiles: '**/surefire-reports/TEST-*.xml'
|
||||
jdkVersionOption: '1.17'
|
||||
|
Loading…
Reference in a new issue