Restricting test publishing to 1/3 of the OS runs

This commit is contained in:
Mark Iantorno 2020-06-12 18:05:45 -04:00
parent d2c473fa26
commit 5a27bd5a61
1 changed files with 3 additions and 1 deletions

View File

@ -39,10 +39,12 @@ steps:
# Upload test results to codecov
- script: bash <(curl https://codecov.io/bash) -t $(codecov)
displayName: 'codecov Bash Uploader'
condition: eq(variables.currentImage, 'ubuntu-latest')
# Publishes the test results to build artifacts.
- task: PublishCodeCoverageResults@1
displayName: 'Publish JaCoCo test results '
displayName: 'Publish JaCoCo test results'
condition: eq(variables.currentImage, 'ubuntu-latest')
inputs:
codeCoverageTool: 'JaCoCo'
summaryFileLocation: '$(System.DefaultWorkingDirectory)/org.hl7.fhir.report/target/site/jacoco-aggregate/jacoco.xml'