mirror of
https://github.com/libgit2/libgit2.git
synced 2026-01-25 02:56:17 +00:00
Since we have migrated to Azure Pipelines, we have deprecated and subsequentally removed all infrastructure for AppVeyor and Travis. Thus it doesn't make a lot of sense to have the split between "ci/" and "azure-pipelines/" directories anymoer, as "azure-pipelines/" is essentially our only CI. Move all CI scripts into the "azure-pipelines/" directory to have everything centrally located and to remove clutter in the top-level directory.
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
|