Skip to content

Commit

Permalink
add vmImage pool to version number jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
blindzero committed Sep 20, 2020
1 parent 5cc8994 commit 1a42981
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ stages:
- job: Build_Branch_Version_Number
displayName: Build Branch Version Number
condition: ne(variables['Build.SourceBranch'], 'refs/heads/master')
pool:
vmImage: 'windows-latest'
variables:
# revision build numbering
brpatch: $[counter(variables['build.sourcebranchname'], 0)]
Expand Down Expand Up @@ -64,6 +66,8 @@ stages:
- job: Build_Master_Version_Number
displayName: Build Master Version Number
condition: eq(variables['Build.SourceBranch'], 'refs/heads/master')
pool:
vmImage: 'windows-latest'
variables:
build: $[counter(variables['minor'], 0)]
steps:
Expand Down

0 comments on commit 1a42981

Please sign in to comment.