Browse Source

Always run PublishTestArtifacts unless the build was canceled.

pull/2055/head
Jeremy Koritzinsky 8 years ago
committed by GitHub
parent
commit
bbf570198a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      azure-pipelines.yml

3
azure-pipelines.yml

@ -29,6 +29,7 @@ jobs:
inputs:
testResultsFormat: 'VSTest'
testResultsFiles: '$(Build.SourcesDirectory)/artifacts/test-results/*.trx'
condition: not(canceled())
- job: macOS
pool:
@ -77,6 +78,7 @@ jobs:
inputs:
testResultsFormat: 'VSTest'
testResultsFiles: '$(Build.SourcesDirectory)/artifacts/test-results/*.trx'
condition: not(canceled())
- task: PublishBuildArtifacts@1
inputs:
@ -111,6 +113,7 @@ jobs:
inputs:
testResultsFormat: 'VSTest'
testResultsFiles: '$(Build.SourcesDirectory)/artifacts/test-results/*.trx'
condition: not(canceled())
- task: PublishBuildArtifacts@1
inputs:

Loading…
Cancel
Save