1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 10:45:22 +00:00

update azure config

This commit is contained in:
Darien Raymond 2019-02-07 12:38:44 +01:00
parent 02e00f36a9
commit 6e65007d16
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -61,7 +61,6 @@ jobs:
variables:
GOPATH: '$(system.defaultWorkingDirectory)'
CODECOV_TOKEN: '$(coverage.token)'
BAZEL_VER: '0.22.0'
steps:
@ -69,12 +68,22 @@ jobs:
- task: GoTool@0
inputs:
version: '1.11.5'
- script: |
sudo apt-get -y update
sudo apt-get -y install jq git file pkg-config zip g++ zlib1g-dev unzip python openssl
displayName: Apt Install
- 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: |
mkdir release
cd src
zip -9 -r ../release/src_all.zip * -x '*.git*'
workingDirectory: '$(system.defaultWorkingDirectory)'
displayName: 'Dump sources'
- script: |
curl -L -o bazel-installer.sh https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VER}/bazel-${BAZEL_VER}-installer-linux-x86_64.sh
chmod +x bazel-installer.sh
@ -86,3 +95,7 @@ jobs:
$HOME/bin/bazel build --action_env=GOPATH=$GOPATH --action_env=PATH=$PATH --action_env=GPG_PASS=${SIGN_KEY_PASS} //release:all
workingDirectory: '$(system.defaultWorkingDirectory)'
displayName: 'Build Binaries'
- script: |
cp ./src/v2ray.com/core/bazel-bin/release/*.zip ./release/
workingDirectory: '$(system.defaultWorkingDirectory)'
displayName: 'Dump Binaries'