mirror of
https://git.proxmox.com/git/libgit2
synced 2025-08-04 07:15:20 +00:00
18 lines
620 B
YAML
18 lines
620 B
YAML
# These are the steps used for building on machines with bash.
|
|
steps:
|
|
- bash: . '$(Build.SourcesDirectory)/ci/build.sh'
|
|
displayName: Build
|
|
workingDirectory: '$(Build.BinariesDirectory)'
|
|
env: ${{ parameters.environmentVariables }}
|
|
- bash: . '$(Build.SourcesDirectory)/ci/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
|