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.
25 lines
576 B
25 lines
576 B
steps: |
|
- task: PowerShell@2 |
|
inputs: |
|
targetType: 'filePath' |
|
filePath: .\ci\run.ps1 |
|
env: |
|
MESON_CI_JOBNAME: azure-$(System.JobName) |
|
|
|
- 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())
|
|
|