1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-25 00:45:24 +00:00
v2fly/azure-pipelines.template.yml

17 lines
318 B
YAML
Raw Normal View History

2018-11-12 21:37:44 +00:00
jobs:
- job: ${{ parameters.name }}
timeoutInMinutes: 30
pool:
vmImage: ${{ parameters.vmImage }}
steps:
2019-02-13 09:32:01 +00:00
- checkout: self
2018-11-12 22:58:26 +00:00
- task: GoTool@0
2018-11-12 23:00:12 +00:00
inputs:
2019-02-26 09:19:36 +00:00
version: '1.12'
2018-11-12 21:37:44 +00:00
- script: |
2019-02-13 09:32:01 +00:00
go test -p 1 -v -timeout 30m ./...
workingDirectory: '$(Build.SourcesDirectory)'
2018-11-12 21:37:44 +00:00
displayName: 'Test'