aboutsummaryrefslogtreecommitdiffstats
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2018-10-13 21:51:22 +0200
committerJay Berkenbilt <ejb@ql.org>2018-10-14 00:36:36 +0200
commit2dd8ddcbaf7e2c19dddc9ea8a49e53bf8a59951f (patch)
tree68e4840336d4b0d7c2f22ed0c2bb682ea326e82e /azure-pipelines.yml
parente91e41034dab404e7dd392791c316bb2ad3f68ae (diff)
downloadqpdf-2dd8ddcbaf7e2c19dddc9ea8a49e53bf8a59951f.tar.zst
Publish test results
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 6d841b75..93a5bef4 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -17,6 +17,10 @@ jobs:
artifactName: distribution
displayName: 'Upload source distribution'
condition: eq(variables['System.PullRequest.IsFork'], 'False')
+ - task: PublishTestResults@2
+ inputs:
+ testRunTitle: Linux
+ buildPlatform: Linux
- job: Windows
pool:
vmImage: vs2017-win2016
@@ -54,6 +58,10 @@ jobs:
artifactName: distribution
displayName: 'Upload binary distributions'
condition: eq(variables['System.PullRequest.IsFork'], 'False')
+ - task: PublishTestResults@2
+ inputs:
+ testRunTitle: Windows-$(wordsize)$(tool)
+ buildPlatform: Windows-$(wordsize)$(tool)
dependsOn: Linux
condition: succeeded()
- job: macOS
@@ -68,6 +76,10 @@ jobs:
condition: eq(variables['System.PullRequest.IsFork'], 'False')
- script: azure-pipelines/build-mac
displayName: 'Mac build and test'
+ - task: PublishTestResults@2
+ inputs:
+ testRunTitle: MacOS
+ buildPlatform: MacOS
dependsOn: Linux
condition: succeeded()
- job: AppImage