Skip to content

Commit

Permalink
fix: use ubuntu-latest for build pipelines (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
stijnmoreels authored Jun 24, 2021
1 parent 1e06932 commit 4c1ed00
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions build/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ stages:
jobs:
- job: Compile
pool:
vmImage: 'ubuntu-16.04'
vmImage: '$(Vm.Image)'
steps:
- task: qetza.replacetokens.replacetokens-task.replacetokens@3
displayName: 'Replace package version tokens'
Expand Down Expand Up @@ -75,7 +75,7 @@ stages:
- job: RunUnitTests
displayName: 'Run unit tests'
pool:
vmImage: 'ubuntu-16.04'
vmImage: '$(Vm.Image)'
steps:
- task: DownloadPipelineArtifact@2
displayName: 'Download build artifacts'
Expand All @@ -94,7 +94,7 @@ stages:
- job: RunIntegrationTests
displayName: 'Run integration tests'
pool:
vmImage: 'ubuntu-16.04'
vmImage: '$(Vm.Image)'
steps:
- task: DownloadPipelineArtifact@2
displayName: 'Download build artifacts'
Expand Down
8 changes: 4 additions & 4 deletions build/psgallery-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ stages:
jobs:
- job: Compile
pool:
vmImage: 'ubuntu-16.04'
vmImage: '$(Vm.Image)'
steps:
- task: qetza.replacetokens.replacetokens-task.replacetokens@3
displayName: 'Replace package version tokens'
Expand Down Expand Up @@ -64,7 +64,7 @@ stages:
- job: RunUnitTests
displayName: 'Run unit tests'
pool:
vmImage: 'ubuntu-16.04'
vmImage: '$(Vm.Image)'
steps:
- task: DownloadPipelineArtifact@2
displayName: 'Download build artifacts'
Expand All @@ -83,7 +83,7 @@ stages:
- job: RunIntegrationTests
displayName: 'Run integration tests'
pool:
vmImage: 'ubuntu-16.04'
vmImage: '$(Vm.Image)'
steps:
- task: DownloadPipelineArtifact@2
displayName: 'Download build artifacts'
Expand All @@ -104,7 +104,7 @@ stages:
- job: PushToNuGet
displayName: 'Push to PowerShell Gallery'
pool:
vmImage: 'ubuntu-16.04'
vmImage: '$(Vm.Image)'
steps:
- task: DownloadPipelineArtifact@2
displayName: 'Download build artifacts'
Expand Down
1 change: 1 addition & 0 deletions build/variables/build.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
variables:
DotNet.Sdk.Version: '2.2.105'
Project: 'Arcus.Scripting'
Vm.Image: 'ubuntu-latest'

0 comments on commit 4c1ed00

Please sign in to comment.