Fix SDK 9.0.200 global.json pinning causing eval timeouts (#542)

Add rollForward: latestFeature to all global.json entries that pin SDK 9.0.200
so that any 9.0.xxx SDK satisfies the requirement. Without this, machines with
only 9.0.3xx installed fail all dotnet commands during evaluation, causing the
model to burn its entire timeout budget on failed bash retries.
This commit is contained in:
Amaury Levé
2026-04-17 20:07:33 +02:00
committed by GitHub
parent c18d4260de
commit d7b80a806b
6 changed files with 20 additions and 10 deletions
+10 -5
View File
@@ -59,7 +59,8 @@ scenarios:
content: |
{
"sdk": {
"version": "9.0.200"
"version": "9.0.200",
"rollForward": "latestFeature"
}
}
assertions:
@@ -218,7 +219,8 @@ scenarios:
content: |
{
"sdk": {
"version": "9.0.200"
"version": "9.0.200",
"rollForward": "latestFeature"
}
}
assertions:
@@ -278,7 +280,8 @@ scenarios:
content: |
{
"sdk": {
"version": "9.0.200"
"version": "9.0.200",
"rollForward": "latestFeature"
}
}
assertions:
@@ -347,7 +350,8 @@ scenarios:
content: |
{
"sdk": {
"version": "9.0.200"
"version": "9.0.200",
"rollForward": "latestFeature"
}
}
assertions:
@@ -485,7 +489,8 @@ scenarios:
content: |
{
"sdk": {
"version": "9.0.200"
"version": "9.0.200",
"rollForward": "latestFeature"
}
}
assertions:
@@ -1,5 +1,6 @@
{
"sdk": {
"version": "9.0.200"
"version": "9.0.200",
"rollForward": "latestFeature"
}
}
@@ -1,5 +1,6 @@
{
"sdk": {
"version": "9.0.200"
"version": "9.0.200",
"rollForward": "latestFeature"
}
}
+2 -1
View File
@@ -317,7 +317,8 @@ scenarios:
content: |
{
"sdk": {
"version": "9.0.200"
"version": "9.0.200",
"rollForward": "latestFeature"
}
}
- path: "ServiceTests.cs"
@@ -1,5 +1,6 @@
{
"sdk": {
"version": "9.0.200"
"version": "9.0.200",
"rollForward": "latestFeature"
}
}
@@ -1,5 +1,6 @@
{
"sdk": {
"version": "9.0.200"
"version": "9.0.200",
"rollForward": "latestFeature"
}
}