Commit 2dd8ddcbaf7e2c19dddc9ea8a49e53bf8a59951f

Authored by Jay Berkenbilt
1 parent e91e4103

Publish test results

Showing 1 changed file with 12 additions and 0 deletions
azure-pipelines.yml
... ... @@ -17,6 +17,10 @@ jobs:
17 17 artifactName: distribution
18 18 displayName: 'Upload source distribution'
19 19 condition: eq(variables['System.PullRequest.IsFork'], 'False')
  20 + - task: PublishTestResults@2
  21 + inputs:
  22 + testRunTitle: Linux
  23 + buildPlatform: Linux
20 24 - job: Windows
21 25 pool:
22 26 vmImage: vs2017-win2016
... ... @@ -54,6 +58,10 @@ jobs:
54 58 artifactName: distribution
55 59 displayName: 'Upload binary distributions'
56 60 condition: eq(variables['System.PullRequest.IsFork'], 'False')
  61 + - task: PublishTestResults@2
  62 + inputs:
  63 + testRunTitle: Windows-$(wordsize)$(tool)
  64 + buildPlatform: Windows-$(wordsize)$(tool)
57 65 dependsOn: Linux
58 66 condition: succeeded()
59 67 - job: macOS
... ... @@ -68,6 +76,10 @@ jobs:
68 76 condition: eq(variables['System.PullRequest.IsFork'], 'False')
69 77 - script: azure-pipelines/build-mac
70 78 displayName: 'Mac build and test'
  79 + - task: PublishTestResults@2
  80 + inputs:
  81 + testRunTitle: MacOS
  82 + buildPlatform: MacOS
71 83 dependsOn: Linux
72 84 condition: succeeded()
73 85 - job: AppImage
... ...