1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/azure-pipelines.template.yml

23 lines
469 B
YAML
Raw Normal View History

2018-11-12 22:37:44 +01:00
jobs:
- job: ${{ parameters.name }}
timeoutInMinutes: 30
pool:
vmImage: ${{ parameters.vmImage }}
steps:
2019-02-13 10:32:01 +01:00
- checkout: self
2018-11-12 23:58:26 +01:00
- task: GoTool@0
2018-11-13 00:00:12 +01:00
inputs:
2020-06-03 14:52:30 +00:00
version: '1.14'
2018-11-12 22:37:44 +01:00
- script: |
2019-02-13 10:32:01 +01:00
go test -p 1 -v -timeout 30m ./...
workingDirectory: '$(Build.SourcesDirectory)'
2018-11-12 22:37:44 +01:00
displayName: 'Test'
- script: |
go build ./common/buf
condition: always()
workingDirectory: '$(Build.SourcesDirectory)'
displayName: 'Test Buf error'