-
Notifications
You must be signed in to change notification settings - Fork 37
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
Support Windows #82
Support Windows #82
Conversation
One last issue left :) All the |
re:
Silly question, but what should they be? Is this related to the value assigned where the build calls If so, looking at the configuration: os: [ubuntu-latest, macos-latest, windows-latest]
arch: [amd64, arm64]
include:
- os: ubuntu-latest
name: linux
- os: macos-latest
name: darwin
rust-target: x86_64-apple-darwin
- os: windows-latest
name: windows
extension: .exe This reads as create a build job for:
So should there be a I presumed the result of not setting Or maybe I'm just confused by what needs to be done (very likely) 😬 |
My guess is that The project will still be compiled for the default target. Even when |
You can add Long story short, we have to use qemu in order to build the ARM packages. Compiling for multiple targets is not always as easy as in Zig and Go :) I can work on this. Meanwhile, maybe we should just remove the |
OK cool, I'll remove |
NOTE: I also refactored the workflow to use a 'matrix' so
build-linux
andbuild-mac
becomesbuild
.