Skip to content
This repository was archived by the owner on Sep 10, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 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:
- template: 'nuget/determine-pr-version.yml@templates'
parameters:
Expand Down Expand Up @@ -68,7 +68,7 @@ stages:
- job: UnitTests
displayName: 'Run unit tests'
pool:
vmImage: 'ubuntu-16.04'
vmImage: '$(Vm.Image)'
steps:
- task: DownloadPipelineArtifact@2
displayName: 'Download build artifacts'
Expand All @@ -88,7 +88,7 @@ stages:
- job: IntegrationTests
displayName: 'Run integration tests'
pool:
vmImage: 'ubuntu-16.04'
vmImage: '$(Vm.Image)'
steps:
- task: DownloadPipelineArtifact@2
displayName: 'Download build artifacts'
Expand All @@ -111,7 +111,7 @@ stages:
- job: PushToMyGet
displayName: 'Push to MyGet'
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/nuget-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ stages:
jobs:
- job: Compile
pool:
vmImage: 'ubuntu-16.04'
vmImage: '$(Vm.Image)'
steps:
- template: build/build-solution.yml@templates
parameters:
Expand All @@ -57,7 +57,7 @@ stages:
- job: UnitTests
displayName: 'Run unit tests'
pool:
vmImage: 'ubuntu-16.04'
vmImage: '$(Vm.Image)'
steps:
- task: DownloadPipelineArtifact@2
displayName: 'Download build artifacts'
Expand All @@ -77,7 +77,7 @@ stages:
- job: IntegrationTests
displayName: 'Run integration tests'
pool:
vmImage: 'ubuntu-16.04'
vmImage: '$(Vm.Image)'
steps:
- task: DownloadPipelineArtifact@2
displayName: 'Download build artifacts'
Expand All @@ -99,7 +99,7 @@ stages:
- job: PushToNuGet
displayName: 'Push to NuGet.org'
pool:
vmImage: 'ubuntu-16.04'
vmImage: '$(Vm.Image)'
steps:
- task: DownloadPipelineArtifact@2
displayName: 'Download build artifacts'
Expand Down
3 changes: 2 additions & 1 deletion build/variables/build.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
variables:
DotNet.Sdk.Version: '3.1.201'
Project: 'Arcus.BackgroundJobs'
Project: 'Arcus.BackgroundJobs'
Vm.Image: 'ubuntu-latest'