-
Notifications
You must be signed in to change notification settings - Fork 4.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
Use release config for Mono tests #99920
Conversation
This preserves prior behavior and fixes the timeout issues we're seeing
Tagging subscribers to this area: @dotnet/runtime-infrastructure |
@@ -1772,7 +1772,7 @@ extends: | |||
jobParameters: | |||
testGroup: innerloop | |||
nameSuffix: Mono_Interpreter_LibrariesTests | |||
buildArgs: -s mono+libs+libs.tests -c $(_BuildConfig) /p:ArchiveTests=true | |||
buildArgs: -s mono+libs+libs.tests -rc Release -c $(_BuildConfig) /p:ArchiveTests=true |
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.
I see, you're still giving the option of choosing the -c for the runtime, even though -rc assumes Debug on libraries. They don't collide with each other, right?
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.
Yeah this works fine. I generally prefer the explicitness of passing -c
always in case we want to change it. It's not necessary here, just preference of explicitness (like the rest of the pipelines).
This preserves prior behavior and fixes the timeout issues we're seeing