-
-
Notifications
You must be signed in to change notification settings - Fork 604
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
Add support for precondition testing on Apple Silicon #948
Add support for precondition testing on Apple Silicon #948
Conversation
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.
Shouldn't also ThrowAssertion.swift
be updated? It contains explicit x86_64 architecture check.
You're absolutely right! I fixed this and verified that the tests are executed on |
3c7a9e8
to
f6b1429
Compare
Thanks for running the CI. I noticed that the library update added an import that looks like it was deliberately removed in this project. I remove it again and running the test from the Xcode project works now. Could you please trigger the CI again @ikesyo? |
|
||
import Foundation | ||
|
||
#if SWIFT_PACKAGE | ||
#if SWIFT_PACKAGE || COCOAPODS |
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.
Unfortunately, because of that change (and the same one in other file), Nimble
does not compile anymore when used with CocoaPods in the project.
Alright, next round. |
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.
LGTM, thanks for the contribution ✨
Hello! Thanks for merging this! Any chance there will be a release/podspec update soon ? I'm pointing to git/main right now and it runs great on Apple Silicon! |
@ikesyo any chance to get a new release? 🙏 |
…conditiontesting-for-apple-silicon
This updates the dependency
mattgallagher/CwlPreconditionTesting
to v2.1.0 and thereby fixes precondition testing for Macs running on Apple Silicon.Closes #851