The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
523 B
24 lines
523 B
5 years ago
|
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())
|