mirror of
https://git.proxmox.com/git/libgit2
synced 2025-07-14 00:37:23 +00:00
18 lines
646 B
YAML
18 lines
646 B
YAML
# These are the steps used for building on machines with bash.
|
|
steps:
|
|
- bash: . '$(Build.SourcesDirectory)/azure-pipelines/build.sh'
|
|
displayName: Build
|
|
workingDirectory: '$(Build.BinariesDirectory)'
|
|
env: ${{ parameters.environmentVariables }}
|
|
- bash: . '$(Build.SourcesDirectory)/azure-pipelines/test.sh'
|
|
displayName: Test
|
|
workingDirectory: '$(Build.BinariesDirectory)'
|
|
env: ${{ parameters.environmentVariables }}
|
|
- task: PublishTestResults@2
|
|
displayName: Publish Test Results
|
|
condition: succeededOrFailed()
|
|
inputs:
|
|
testResultsFiles: 'results_*.xml'
|
|
searchFolder: '$(Build.BinariesDirectory)'
|
|
mergeTestResults: true
|