-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
enable OpenSSL tests on arm64 mac #72294
Conversation
Tagging subscribers to this area: @dotnet/area-system-security, @vcsjones Issue Detailsfixes #49083
|
@@ -1,9 +1,6 @@ | |||
<Project Sdk="Microsoft.NET.Sdk"> | |||
<PropertyGroup> | |||
<TargetFrameworks>$(NetCoreAppCurrent)-Unix;$(NetCoreAppCurrent)-Browser</TargetFrameworks> | |||
<!-- ActiveIssue Apple Silicon No usable version of libssl was found | |||
https://github.com/dotnet/runtime/issues/49083 --> |
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.
Based on the comment I'm guessing that the CI images either a) don't have OSSL or b) have x86_64 OSSL which can't be loaded by an arm64 CLR.
But if the tests pass in CI, I'm cool with removing the block.
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.
If it does not, I'll work it out with infra team. now I know for sure Brew
can do what we need.
Since the tests passed when force, this should be ready. |
fixes #49083