1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 23:36:25 -04:00
v2fly/azure-pipelines.yml

63 lines
1.7 KiB
YAML
Raw Normal View History

2019-02-06 17:25:58 -05:00
trigger:
batch: true
2019-02-06 17:28:18 -05:00
branches:
include:
2020-07-23 00:54:26 -04:00
- master
- dev*
- refs/tags/*
2019-02-06 17:28:18 -05:00
2020-07-23 00:54:26 -04:00
pool:
vmImage: 'ubuntu-latest'
2019-02-06 17:25:58 -05:00
2020-07-23 00:54:26 -04:00
variables:
- group: GithubToken
- name: GOPATH
value: '$(system.defaultWorkingDirectory)/gopath'
- name: BAZEL_VER
2020-09-09 06:31:57 -04:00
value: '3.5.0'
2019-02-06 17:25:58 -05:00
2020-07-23 00:54:26 -04:00
steps:
2019-04-15 06:39:47 -04:00
- checkout: self
2019-02-06 17:25:58 -05:00
- task: GoTool@0
inputs:
2020-09-10 11:35:07 -04:00
version: '1.15.2'
2019-02-06 17:25:58 -05:00
- script: |
go version
mkdir -p $GOPATH/src/v2ray.com
ln -s $(pwd) $GOPATH/src/v2ray.com/core
ls -lah $GOPATH/src/v2ray.com/core
cd $GOPATH/src/v2ray.com/core || exit 1
go mod download
workingDirectory: '$(system.defaultWorkingDirectory)'
2019-02-06 17:25:58 -05:00
displayName: 'Fetch sources'
2019-02-07 06:38:44 -05:00
- script: |
cd ./src/v2ray.com/core || exit 1
bazel build --action_env=GOPATH=$GOPATH --action_env=PATH=$PATH --action_env=SPWD=$PWD --action_env=GOCACHE=$(go env GOCACHE) --spawn_strategy local //release:all
2019-04-15 06:39:47 -04:00
workingDirectory: '$(GOPATH)'
2019-02-06 17:25:58 -05:00
displayName: 'Build Binaries'
2019-02-07 06:38:44 -05:00
- script: |
cd ./src/v2ray.com/core || exit 1
2019-04-16 04:09:08 -04:00
echo $RELEASE_TAG
2019-04-16 00:26:36 -04:00
./release/bleedingrelease.sh
workingDirectory: '$(GOPATH)'
displayName: 'Generate Bleeding Edge Release'
env:
GITHUB_TOKEN: $(GITHUB_TOKEN)
PRERELEASE: true
2019-04-16 06:45:36 -04:00
RELEASE_TAG: unstable-$(Build.SourceVersion)
RELEASE_SHA: $(Build.SourceVersion)
TRIGGER_REASON: $(Build.SourceBranch)
GITHUB_REPO_OWNER: v2fly
GITHUB_REPO_NAME: v2ray-core
2019-10-30 03:03:29 -04:00
- script: |
cd ./src/v2ray.com/core || exit 1
2019-10-30 03:03:29 -04:00
echo $RELEASE_TAG
./release/tagrelease.sh
workingDirectory: '$(GOPATH)'
displayName: 'Generate Tag Release'
env:
GITHUB_TOKEN: $(GITHUB_TOKEN)
PRERELEASE: true
RELEASE_TAG: unstable-$(Build.SourceVersion)
TRIGGER_REASON: $(Build.SourceBranch)