1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 09:25:23 +00:00
v2fly/azure-pipelines.yml
2018-11-12 21:37:13 +01:00

29 lines
781 B
YAML

# Go
# Build your Go project.
# Add steps that test, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/go
pool:
vmImage: 'Ubuntu 16.04'
variables:
GOPATH: '$(system.defaultWorkingDirectory)/gopath' # Go workspace path
modulePath: '$(GOPATH)/src/v2ray.com/core' # Path to the module's code
steps:
- script: |
mkdir -p '$(modulePath)'
shopt -s extglob
mv !(gopath) '$(modulePath)'
echo '##vso[task.prependpath]$(GOBIN)'
echo '##vso[task.prependpath]$(GOROOT)/bin'
displayName: 'Set up the Go workspace'
- script: |
set -x
go version
go get -v -t -d ./...
go test -p 1 -tags json -v v2ray.com/core/...
workingDirectory: '$(modulePath)'
displayName: 'Get dependencies, then build'