From 6e65007d160497bef64cc9d03f333aa0ad303b82 Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Thu, 7 Feb 2019 12:38:44 +0100 Subject: [PATCH] update azure config --- azure-pipelines.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1203797ad..fe0e71c47 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -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'