mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
549 B
23 lines
549 B
6 years ago
|
jobs:
|
||
|
- job: ${{ parameters.name }}
|
||
|
timeoutInMinutes: 30
|
||
|
|
||
|
pool:
|
||
|
vmImage: ${{ parameters.vmImage }}
|
||
|
|
||
|
variables:
|
||
|
GOPATH: '$(system.defaultWorkingDirectory)'
|
||
|
|
||
|
steps:
|
||
|
- checkout: none
|
||
|
- script: |
|
||
|
go version
|
||
|
go get -v -t -d v2ray.com/core/...
|
||
|
go get -v -t -d v2ray.com/ext/...
|
||
|
workingDirectory: '$(system.defaultWorkingDirectory)'
|
||
|
displayName: 'Fetch sources'
|
||
|
- script: |
|
||
|
go test -p 1 -tags json -v v2ray.com/core/...
|
||
|
workingDirectory: '$(system.defaultWorkingDirectory)'
|
||
|
displayName: 'Test'
|