mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-27 09:55:49 +00:00
Add files via upload
Added Azure pipelines
This commit is contained in:
parent
ca055dbbe1
commit
14373206c4
1 changed files with 22 additions and 0 deletions
22
azure-pipelines.yaml
Normal file
22
azure-pipelines.yaml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
---
|
||||||
|
pool:
|
||||||
|
name: "Azure Pipelines"
|
||||||
|
vmImage: "ubuntu-latest"
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
- main
|
||||||
|
stages:
|
||||||
|
- stage: Build
|
||||||
|
displayName: CI
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
- job: MavenJob
|
||||||
|
displayName: Maven
|
||||||
|
steps:
|
||||||
|
- task: Maven@3
|
||||||
|
inputs:
|
||||||
|
mavenPOMFile: 'pom.xml'
|
||||||
|
publishJUnitResults: true
|
||||||
|
goals: 'package'
|
||||||
|
testResultsFiles: '**/surefire-reports/TEST-*.xml'
|
||||||
|
jdkVersionOption: '1.17'
|
Loading…
Reference in a new issue