1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 14:56:33 -04:00

only keep release

This commit is contained in:
Kslr 2020-07-23 12:20:19 +08:00
parent 108b9b3c7a
commit 6f1ac51e08
No known key found for this signature in database
GPG Key ID: 0AF5F66FA1E887CE
2 changed files with 0 additions and 62 deletions

View File

@ -1,22 +0,0 @@
jobs:
- job: ${{ parameters.name }}
timeoutInMinutes: 30
pool:
vmImage: ${{ parameters.vmImage }}
steps:
- checkout: self
- task: GoTool@0
inputs:
version: '1.14'
- script: |
go test -p 1 -v -timeout 30m ./...
workingDirectory: '$(Build.SourcesDirectory)'
displayName: 'Test'
- script: |
go build ./common/buf
condition: always()
workingDirectory: '$(Build.SourcesDirectory)'
displayName: 'Test Buf error'

View File

@ -6,47 +6,7 @@ trigger:
- dev*
- refs/tags/*
pr:
- master
- dev*
jobs:
- template: azure-pipelines.template.yml
parameters:
name: linux
vmImage: 'ubuntu-latest'
- template: azure-pipelines.template.yml
parameters:
name: windows
vmImage: 'windows-latest'
- template: azure-pipelines.template.yml
parameters:
name: macos
vmImage: 'macOS-latest'
- job: linux_coverage
dependsOn: linux
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'))
timeoutInMinutes: 30
pool:
vmImage: 'ubuntu-latest'
#variables:
# CODECOV_TOKEN: '$(coverage.token)'
steps:
- checkout: self
- task: GoTool@0
inputs:
version: '1.14.6'
- script: |
bash ./testing/coverage/coverall
workingDirectory: '$(Build.SourcesDirectory)'
displayName: 'Coverage'
- job: make_release
dependsOn: linux