-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Closed
Labels
Description
When I run the entire runtime's tests locally using:
./build.sh -rc release -s libs.tests -test
This runs the System.Security.Cryptography.OpenSsl.Tests on macOS. This is not desirable because these tests will never pass on macOS after the removal of OpenSSL compatibility from macOS.
This "works" in CI because of
Line 5 in d521402
<IgnoreForCI Condition="'$(TargetOS)' == 'android' or '$(TargetOS)' == 'ios' or '$(TargetOS)' == 'tvos' or '$(TargetOS)' == 'osx'">true</IgnoreForCI> |
But ideally these are not run locally, either. Is there a way we can exclude this project from running on any Apple platform when run locally, too?
Copilot
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Done