-
Notifications
You must be signed in to change notification settings - Fork 5.2k
[iOS] Remove unnecessary newline from CI script #67861
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
Changes from all commits
bc27e00
6ae7f12
b025c1a
6d76bd5
4fb433f
8136190
32e33c9
a6e0d5b
c201560
c0ca0d7
a4f69a5
fef0558
cc6c535
da9f90d
fb556ce
b874db0
9d52a51
ef30e9f
81c4779
50ae647
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 |
|---|---|---|
|
|
@@ -25,11 +25,10 @@ | |
| <_AfterBuildCommands> | ||
| mv $XHARNESS_OUT/AOTBuild.binlog "$HELIX_WORKITEM_UPLOAD_ROOT" | ||
| sign "$app" | ||
| xharness apple test --app "$app" --output-directory "$output_directory" --target "$target" --timeout "$timeout" --xcode "$xcode_path" -v --launch-timeout "$launch_timeout" $(_ResetSimulatorSwitch) $(_SignalAppEndSwitch) -- | ||
| </_AfterBuildCommands> | ||
| xharness apple test --app "$app" --output-directory "$output_directory" --target "$target" --timeout "$timeout" --xcode "$xcode_path" -v --launch-timeout "$launch_timeout" $(_ResetSimulatorSwitch) $(_SignalAppEndSwitch) -- </_AfterBuildCommands> | ||
|
||
|
|
||
| <RunScriptCommand>$(_AOTBuildCommand) $(_AfterBuildCommands)</RunScriptCommand> | ||
| </PropertyGroup> | ||
| </PropertyGroup> | ||
|
|
||
| <Import Project="$(MonoProjectRoot)\msbuild\apple\build\AppleApp.props" | ||
| Condition="'$(BuildTestsOn)' == 'local'" /> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -153,6 +153,7 @@ private static bool GetLinqExpressionsBuiltWithIsInterpretingOnly() | |
| public static bool IsNotIntMaxValueArrayIndexSupported => s_largeArrayIsNotSupported.Value; | ||
|
|
||
| public static bool IsAssemblyLoadingSupported => !IsNativeAot; | ||
| public static bool IsNonBundledAssemblyLoadingSupported => !IsAssemblyLoadingSupported && !IsMonoAOT; | ||
|
Member
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 don't understand this condition. Non-bundled assembly loading is supported when assembly loading is not supported and it's not Mono AOT? This made the test using this run exclusively on NativeAOT. It's not supposed to run there. It's breaking the rolling CI. I don't understand the specifics, but this probably should have extended the definition of
Member
Author
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. My bad. The ! needs to go away. I'll put up a fix.
Member
Author
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. |
||
| public static bool IsMethodBodySupported => !IsNativeAot; | ||
| public static bool IsDebuggerTypeProxyAttributeSupported => !IsNativeAot; | ||
| public static bool HasAssemblyFiles => !string.IsNullOrEmpty(typeof(PlatformDetection).Assembly.Location); | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.