-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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 merged runners for ios tests #107118
base: main
Are you sure you want to change the base?
Use merged runners for ios tests #107118
Changes from all commits
e33b371
aae403b
d013476
d691882
4cd399e
9895267
c493243
6404d1b
7d427d3
31c24e9
19d05e3
edc614d
1ceda02
2609bde
34b7836
24c16e8
ff98b79
95a67a0
711ccc8
4fb389b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,9 +90,7 @@ jobs: | |
- template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml | ||
parameters: | ||
creator: dotnet-bot | ||
compileOnHelix: true | ||
interpreter: true | ||
testBuildArgs: /p:ArchiveTests=true /p:DevTeamProvisioning=- /p:RunAOTCompilation=true /p:MonoForceInterpreter=true /p:BuildTestsOnHelix=true | ||
testBuildArgs: /p:DevTeamProvisioning=- /p:RunAOTCompilation=true /p:MonoForceInterpreter=true | ||
testRunNamePrefixSuffix: Mono_$(_BuildConfig) | ||
extraHelixArguments: /p:NeedsToBuildAppsOnHelix=true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @jkoritzinsky Did you intentionally remove There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was trying it as an option to see if it would work and be easier to debug. If you prefer, we can switch back to that. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you need to provide |
||
|
||
|
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.
You need to specify
/p:BuildTestsOnHelix=true
and I thinkcompileOnHelix: true
here if you want to build the apps on helix (the test build and test send commands need to agree).