Skip to content

Commit

Permalink
[release/6.0-staging] Remove Windows 7 helix queues
Browse files Browse the repository at this point in the history
Backport of #100981 to release/6.0-staging

## Customer Impact

- [ ] Customer reported
- [X] Found internally

Due to changing internal requirements, Helix is decomissioning the Win7 queues.

As a result, we need to stop sending work to them before they are turned off (as any build that uses them after that point will fail.

## Regression

- [ ] Yes
- [X] No

## Testing

Infrastructure-only removal of a queue, no testing necessary.

## Risk

Low: Simple removal of a Helix queue. We do lose some test coverage, but we can't keep the queue around.

**IMPORTANT**: If this backport is for a servicing release, please verify that:

- The PR target branch is `release/X.0-staging`, not `release/X.0`.

- If the change touches code that ships in a NuGet package, you have added the necessary [package authoring](https://github.com/dotnet/runtime/blob/main/docs/project/library-servicing.md) and gotten it explicitly reviewed.
  • Loading branch information
jkoritzinsky authored Apr 12, 2024
1 parent eeb75c9 commit 4824a1c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions eng/pipelines/libraries/helix-queues-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,18 +147,15 @@ jobs:
# netcoreapp
- ${{ if notIn(parameters.jobParameters.framework, 'net48') }}:
- ${{ if and(eq(parameters.jobParameters.testScope, 'outerloop'), eq(parameters.jobParameters.runtimeFlavor, 'mono')) }}:
- Windows.7.Amd64.Open
- Windows.10.Amd64.ServerRS5.Open
- ${{ if or(ne(parameters.jobParameters.testScope, 'outerloop'), ne(parameters.jobParameters.runtimeFlavor, 'mono')) }}:
- ${{ if eq(parameters.jobParameters.isFullMatrix, true) }}:
- Windows.7.Amd64.Open
- Windows.10.Amd64.ServerRS5.Open
- Windows.Amd64.Server2022.Open
- ${{ if ne(parameters.jobParameters.isFullMatrix, true) }}:
- ${{ if eq(parameters.jobParameters.buildConfig, 'Release') }}:
- Windows.Amd64.Server2022.Open
- ${{ if eq(parameters.jobParameters.buildConfig, 'Debug') }}:
- Windows.7.Amd64.Open
- Windows.Amd64.Server2022.Open

# .NETFramework
Expand Down

0 comments on commit 4824a1c

Please sign in to comment.