steps: | |
- task: PowerShell@2 | |
inputs: | |
targetType: 'filePath' | |
filePath: .\ci\run.ps1 | |
- task: PublishTestResults@2 | |
inputs: | |
testResultsFiles: meson-test-run.xml | |
testRunTitle: $(System.JobName) | |
publishRunAttachments: true | |
condition: not(canceled()) | |
- task: CopyFiles@2 | |
inputs: | |
contents: 'meson-test-run.*' | |
targetFolder: $(Build.ArtifactStagingDirectory) | |
condition: not(canceled()) | |
- task: PublishBuildArtifacts@1 | |
inputs: | |
artifactName: $(System.JobName) | |
condition: not(canceled()) |