Install the .NET 10 SDK alongside 8.0 on the EKS test EC2 instance - #2116
Merged
Conversation
The EKS live test provisions a Debian 12 EC2 instance, uploads the built test assemblies and runs `dotnet test` on it. test.sh installs only dotnet-sdk-8.0, so the instance cannot run net10 assemblies once Calamari moves. Additive, so it is a no-op on net8 today: 8.0 stays and 10.0 is added beside it. dotnet-sdk-10.0 is published in the feed test.sh already configures (packages.microsoft.com/debian/12, bookworm main binary-amd64). Raised separately from the migration so the existing build chain can confirm it changes nothing before #2091 lands. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
NickJosevski
force-pushed
the
nj/check-impact-of-net10
branch
from
August 6, 2026 05:19
fabf065 to
6a27b29
Compare
NickJosevski
marked this pull request as ready for review
August 10, 2026 03:59
zentron
approved these changes
Aug 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
test.shfor the EKS live test installs onlydotnet-sdk-8.0, so the EC2 instance can't run net10 assemblies. Adds 10.0 beside it.Additive and net8-safe — raised separately so the existing chain can confirm it changes nothing before #2091 lands.