Skip to content

Commit

Permalink
Update azure-pipelines.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kslr committed May 31, 2020
1 parent bab1c33 commit 200e6ea
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,25 @@ jobs:
- template: azure-pipelines.template.yml
parameters:
name: linux
vmImage: 'ubuntu-16.04'
vmImage: 'ubuntu-latest'

- template: azure-pipelines.template.yml
parameters:
name: windows
vmImage: 'vs2017-win2016'
vmImage: 'windows-latest'

- template: azure-pipelines.template.yml
parameters:
name: macos
vmImage: 'macOS-10.14'
vmImage: 'macOS-latest'

- job: linux_coverage
dependsOn: linux
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'))
timeoutInMinutes: 30

pool:
vmImage: 'Ubuntu 16.04'
vmImage: 'ubuntu-latest'

#variables:
# CODECOV_TOKEN: '$(coverage.token)'
Expand All @@ -42,7 +42,7 @@ jobs:
- checkout: self
- task: GoTool@0
inputs:
version: '1.13'
version: '1.14.x'
- script: |
bash ./testing/coverage/coverall
workingDirectory: '$(Build.SourcesDirectory)'
Expand All @@ -54,8 +54,13 @@ jobs:
timeoutInMinutes: 60

pool:
<<<<<<< HEAD
vmImage: 'Ubuntu 16.04'

=======
vmImage: 'ubuntu-latest'

>>>>>>> f099c1e5... Update azure-pipelines.yml
variables:
- group: GithubToken
- name: GOPATH
Expand All @@ -67,7 +72,7 @@ jobs:
- checkout: self
- task: GoTool@0
inputs:
version: '1.13'
version: '1.14.x'
- script: |
mkdir triggersrc
ls -I "triggersrc" | xargs cp -rf -t triggersrc
Expand Down

0 comments on commit 200e6ea

Please sign in to comment.