-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Try not run on arm64 #25701
Try not run on arm64 #25701
Conversation
@@ -7,7 +7,7 @@ public static class DotnetInternal | |||
{ | |||
static readonly string DotnetRoot = Path.Combine(TestEnvironment.GetMauiDirectory(), ".dotnet"); | |||
static readonly string DotnetTool = Path.Combine(DotnetRoot, "dotnet"); | |||
const int DEFAULT_TIMEOUT = 900; | |||
const int DEFAULT_TIMEOUT = 1800; |
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.
Why requires to duplicate the default timeout time?
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.
BEcause we are hitting the time limit .
@rolfbjarne @dalexsoto i m not sure what follow up we need here, but seems that we a issue where this is slower on net9 , and takes mroe than 15 minutes to do a simple release run . We have see other people saying this is getting slower to do dotnet run on net9
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.
Can you get a binlog of something that runs fast in .NET 8 and slow in .NET 9 (so two binlogs - before and after)?
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.
Ok this is from the test failure timeout on net9 sample.binlog.zip
I m trying to get the same for net8, we didn't had logs for this on that branch
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.
This seems it didn t work . 30 minutes it still hangs
Description of Change
try fix template tests
Fixes #25695