Commit 2dd8ddcbaf7e2c19dddc9ea8a49e53bf8a59951f
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,6 +17,10 @@ jobs: | ||
| 17 | artifactName: distribution | 17 | artifactName: distribution |
| 18 | displayName: 'Upload source distribution' | 18 | displayName: 'Upload source distribution' |
| 19 | condition: eq(variables['System.PullRequest.IsFork'], 'False') | 19 | condition: eq(variables['System.PullRequest.IsFork'], 'False') |
| 20 | + - task: PublishTestResults@2 | ||
| 21 | + inputs: | ||
| 22 | + testRunTitle: Linux | ||
| 23 | + buildPlatform: Linux | ||
| 20 | - job: Windows | 24 | - job: Windows |
| 21 | pool: | 25 | pool: |
| 22 | vmImage: vs2017-win2016 | 26 | vmImage: vs2017-win2016 |
| @@ -54,6 +58,10 @@ jobs: | @@ -54,6 +58,10 @@ jobs: | ||
| 54 | artifactName: distribution | 58 | artifactName: distribution |
| 55 | displayName: 'Upload binary distributions' | 59 | displayName: 'Upload binary distributions' |
| 56 | condition: eq(variables['System.PullRequest.IsFork'], 'False') | 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 | dependsOn: Linux | 65 | dependsOn: Linux |
| 58 | condition: succeeded() | 66 | condition: succeeded() |
| 59 | - job: macOS | 67 | - job: macOS |
| @@ -68,6 +76,10 @@ jobs: | @@ -68,6 +76,10 @@ jobs: | ||
| 68 | condition: eq(variables['System.PullRequest.IsFork'], 'False') | 76 | condition: eq(variables['System.PullRequest.IsFork'], 'False') |
| 69 | - script: azure-pipelines/build-mac | 77 | - script: azure-pipelines/build-mac |
| 70 | displayName: 'Mac build and test' | 78 | displayName: 'Mac build and test' |
| 79 | + - task: PublishTestResults@2 | ||
| 80 | + inputs: | ||
| 81 | + testRunTitle: MacOS | ||
| 82 | + buildPlatform: MacOS | ||
| 71 | dependsOn: Linux | 83 | dependsOn: Linux |
| 72 | condition: succeeded() | 84 | condition: succeeded() |
| 73 | - job: AppImage | 85 | - job: AppImage |