Skip to content

Commit

Permalink
fix cc pipeline (#2236)
Browse files Browse the repository at this point in the history
- Weekly run of code coverage is failing
- Bump VM versions for ci builds
  • Loading branch information
mregen committed Jul 27, 2023
1 parent 7f85159 commit 8c2bf35
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .azurepipelines/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
#
parameters:
buildoption: ''
framework: netcoreapp3.1
framework: net6.0
jobnamesuffix: ''
agents: '@{}'
jobs:
- job: buildprep${{ parameters.jobnamesuffix }}
displayName: Prepare Build Jobs
pool:
vmImage: 'windows-2019'
vmImage: 'windows-2022'
variables:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
Expand Down
4 changes: 2 additions & 2 deletions .azurepipelines/get-matrix.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ if (![string]::IsNullOrEmpty($JobPrefix)) {
if ($AgentTable -eq $null -or $AgentTable.Count -eq 0)
{
$agents = @{
windows = "windows-2019"
linux = "ubuntu-20.04"
windows = "windows-2022"
linux = "ubuntu-22.04"
mac = "macOS-11"
}
}
Expand Down
6 changes: 3 additions & 3 deletions .azurepipelines/testcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
#
parameters:
configuration: 'Release'
framework: 'netcoreapp3.1'
framework: net6.0
agent: 'linux'
poolImage: 'ubuntu-18.04'
jobnamesuffix: 'netcore31'
poolImage: 'ubuntu-22.04'
jobnamesuffix: 'net60cc'
jobs:
- job: testcc${{ parameters.jobnamesuffix }}
displayName: Coverage ${{ parameters.agent }} ${{ parameters.configuration }}
Expand Down
5 changes: 3 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,5 +108,6 @@ stages:
- template: .azurepipelines/testcc.yml
parameters:
configuration: Release
poolImage: 'ubuntu-20.04'
jobnamesuffix: netcore31
poolImage: 'ubuntu-22.04'
framework: net6.0
jobnamesuffix: net60cc

0 comments on commit 8c2bf35

Please sign in to comment.