Skip to content

Commit

Permalink
Update .NET 9 runtime for single machine CI job (#75889)
Browse files Browse the repository at this point in the history
* Update .NET 9 runtime for single machine CI job

* Use regular pool
  • Loading branch information
jjonescz authored Nov 15, 2024
1 parent b3b184c commit bf1ec77
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 12 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ variables:
${{ else }}:
value: windows.vs2022preview.amd64

- name: Vs2022RegularQueueName
${{ if eq(variables['System.TeamProject'], 'public') }}:
value: windows.vs2022.amd64.open
${{ else }}:
value: windows.vs2022.amd64

- name: UbuntuQueueName
${{ if eq(variables['System.TeamProject'], 'public') }}:
value: Build.Ubuntu.2004.Amd64.Open
Expand Down Expand Up @@ -107,6 +113,11 @@ parameters:
default:
name: $(PoolName)
demands: ImageOverride -equals $(Vs2022PreviewQueueName)
- name: vs2022RegularPool
type: object
default:
name: $(PoolName)
demands: ImageOverride -equals $(Vs2022RegularQueueName)

stages:
- stage: Windows_Debug_Build
Expand Down Expand Up @@ -271,7 +282,7 @@ stages:
jobName: Test_Windows_CoreClr_Debug_Single_Machine
testArtifactName: Transport_Artifacts_Windows_Debug
configuration: Debug
poolParameters: ${{ parameters.vs2022PreviewPool }}
poolParameters: ${{ parameters.vs2022RegularPool }}
testArguments: -testCoreClr

- template: eng/pipelines/test-windows-job.yml
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/test-windows-job-single-machine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
displayName: 'Install .NET 9 Runtime'
inputs:
packageType: runtime
version: 9.0.0-preview.3.24172.9
version: 9.0.0-rc.2.24473.5
includePreviewVersions: true
installationPath: '$(Build.SourcesDirectory)/.dotnet'

Expand Down

0 comments on commit bf1ec77

Please sign in to comment.