Browse Source

multiple platform

pull/1435/head
Darien Raymond 6 years ago
parent
commit
6dd5365b84
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
  1. 88
      azure-pipelines.yml

88
azure-pipelines.yml

@ -3,26 +3,68 @@
# Add steps that test, save build artifacts, deploy, and more: # Add steps that test, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/go # https://docs.microsoft.com/azure/devops/pipelines/languages/go
pool: jobs:
vmImage: 'Ubuntu 16.04' - job: Linux
variables: pool:
GOPATH: '$(system.defaultWorkingDirectory)/gopath' # Go workspace path vmImage: 'Ubuntu 16.04'
modulePath: '$(GOPATH)/src/v2ray.com/core' # Path to the module's code
variables:
steps: GOPATH: '$(system.defaultWorkingDirectory)'
- script: |
mkdir -p '$(modulePath)' steps:
shopt -s extglob - checkout: none
mv !(gopath) '$(modulePath)' - script: |
echo '##vso[task.prependpath]$(GOBIN)' go version
echo '##vso[task.prependpath]$(GOROOT)/bin' go get -v -t -d v2ray.com/core/...
displayName: 'Set up the Go workspace' go get -v -t -d v2ray.com/ext/...
workingDirectory: '$(system.defaultWorkingDirectory)'
- script: | displayName: 'Fetch sources'
set -x - script: |
go version go test -p 1 -tags json -v v2ray.com/core/...
go get -v -t -d ./... workingDirectory: '$(system.defaultWorkingDirectory)'
go test -p 1 -tags json -v v2ray.com/core/... displayName: 'Test'
workingDirectory: '$(modulePath)'
displayName: 'Get dependencies, then build' jobs:
- job: MacOS
pool:
vmImage: 'macOS-10.13'
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'
jobs:
- job: Windows
pool:
vmImage: 'vs2017-win2016'
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'

Loading…
Cancel
Save