Update pull-request-pipeline.yml for Azure Pipelines

Adding validation cli jar test run
This commit is contained in:
Mark Iantorno 2021-05-21 15:42:41 -04:00
parent 124bef0e8b
commit 7ddf41f571
1 changed files with 13 additions and 0 deletions

View File

@ -36,6 +36,19 @@ steps:
testResultsFiles: '**/surefire-reports/TEST-*.xml'
goals: 'package'
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
goals: 'exec:exec'
options: '-pl org.hl7.fhir.validation.cli'
publishJUnitResults: false
testResultsFiles: '**/surefire-reports/TEST-*.xml'
javaHomeOption: 'JDKVersion'
mavenVersionOption: 'Default'
mavenAuthenticateFeed: false
effectivePomSkip: false
sonarQubeRunAnalysis: false
# Upload test results to codecov
- script: bash <(curl https://codecov.io/bash) -t $(codecov)
displayName: 'codecov Bash Uploader'