-
Notifications
You must be signed in to change notification settings - Fork 28
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 Apple Silicon #76
Comments
Hey Patrick😁 ...
function getPlatform() {
const osMap = {
Windows_NT: {
name: "windows",
archs: {
x64: "x86_64",
},
},
Linux: {
name: "linux",
archs: {
x64: "x86_64",
},
},
Darwin: {
name: "macos",
archs: {
arm64: "x86_64",
x64: "x86_64",
},
},
};
... But when installing the cli on a debian based docker container running on the same M1 machine, I face an error, because Is this related to this issue you opened? Is there a temporary solution for that or is there anything planned for it? |
It looks like GitHub does not yet support arm64 hosted runners: There might be a way to do this without having to run on arm64 ourselves but I don't yet know how that would look |
This was resolved when we rewrote the rust cli to JavaScript in version v0.5.7 🥳 |
We currently don't produce a target binary for apple silicon (i.e. arm64).
This should hopefully be a simple addition to the CI pipline matrix. However the current worflow in the CI pipeline makes certain assumptions that
macOS
is a single architecture, and therefore may need somne light refactoring.The text was updated successfully, but these errors were encountered: