]> git.proxmox.com Git - libgit2.git/blob - azure-pipelines/powershell.yml
a2eb175d5714617634f6b3025d836e191c4d5dc1
[libgit2.git] / azure-pipelines / powershell.yml
1 # These are the steps used for building on machines with PowerShell.
2 steps:
3 - powershell: . '$(Build.SourcesDirectory)\ci\build.ps1'
4 displayName: Build
5 workingDirectory: '$(Build.BinariesDirectory)'
6 env: ${{ parameters.environmentVariables }}
7 - powershell: . '$(Build.SourcesDirectory)\ci\test.ps1'
8 displayName: Test
9 workingDirectory: '$(Build.BinariesDirectory)'
10 env: ${{ parameters.environmentVariables }}
11 - task: PublishTestResults@2
12 displayName: Publish Test Results
13 condition: succeededOrFailed()
14 inputs:
15 testResultsFiles: 'results_*.xml'
16 searchFolder: '$(Build.BinariesDirectory)'
17 mergeTestResults: true