-
Notifications
You must be signed in to change notification settings - Fork 5.2k
WIP: Update AzureLinux 3 configuration to run more aggressively #117693
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the Azure Pipelines configuration for AzureLinux 3 to enable more aggressive testing by adjusting Helix queue configurations. The changes address both a casing inconsistency and add additional test coverage.
- Fixes casing inconsistency in AzureLinux ARM64 queue configuration
- Adds native AzureLinux.3.Amd64.Open queue for extra-platforms CoreCLR testing
@@ -61,6 +61,7 @@ jobs: | |||
# CoreCLR path | |||
- ${{ if and(eq(parameters.jobParameters.isExtraPlatformsBuild, true), ne(parameters.jobParameters.testScope, 'outerloop'))}}: | |||
# extra-platforms CoreCLR (inner loop only) | |||
- AzureLinux.3.Amd64.Open | |||
- (Debian.13.Amd64.Open)[email protected]/dotnet-buildtools/prereqs:debian-13-helix-amd64 | |||
- (Fedora.42.Amd64.Open)[email protected]/dotnet-buildtools/prereqs:fedora-42-helix-amd64 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistent casing: 'open' should be 'Open' to match the pattern used in other queue configurations in this file.
- (Fedora.42.Amd64.Open)AzureLinux.3.Amd64.open@mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-42-helix-amd64 | |
- (Fedora.42.Amd64.Open)AzureLinux.3.Amd64.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-42-helix-amd64 |
Copilot uses AI. Check for mistakes.
@@ -61,6 +61,7 @@ jobs: | |||
# CoreCLR path | |||
- ${{ if and(eq(parameters.jobParameters.isExtraPlatformsBuild, true), ne(parameters.jobParameters.testScope, 'outerloop'))}}: | |||
# extra-platforms CoreCLR (inner loop only) | |||
- AzureLinux.3.Amd64.Open | |||
- (Debian.13.Amd64.Open)[email protected]/dotnet-buildtools/prereqs:debian-13-helix-amd64 | |||
- (Fedora.42.Amd64.Open)[email protected]/dotnet-buildtools/prereqs:fedora-42-helix-amd64 | |||
- (openSUSE.15.6.Amd64.Open)[email protected]/dotnet-buildtools/prereqs:opensuse-15.6-helix-amd64 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistent casing: 'open' should be 'Open' to match the pattern used in other queue configurations in this file.
- (openSUSE.15.6.Amd64.Open)[email protected]/dotnet-buildtools/prereqs:opensuse-15.6-helix-amd64 | |
- (OpenSUSE.15.6.Amd64.Open)[email protected]/dotnet-buildtools/prereqs:opensuse-15.6-helix-amd64 |
Copilot uses AI. Check for mistakes.
/azp run runtime-libraries-coreclr outerloop-linux |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run runtime-extra-platforms |
Azure Pipelines successfully started running 1 pipeline(s). |
3ff1110
to
88452f3
Compare
FYI: I also made this. I'm happy to close it. |
Is yours far enough along? I messed up my update (didn't rebase), so I was about to start over. |
WIP