-
-
Notifications
You must be signed in to change notification settings - Fork 36
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
More binary builds v2 #582
Conversation
almarklein
commented
Sep 13, 2024
•
edited
Loading
edited
- Include Windows aarch64 and 32bit builds, closes Add Windows aarch64 #536
- Musllinux would be nice, but still an open issue at wgpu-native musl support gfx-rs/wgpu-native#414
- One build per binary, so easier to configure, and easier to extend in the future.
Need to update the rules for the protected branch to get match the new names of the builds. Other than that this is ready. |
BTW, we already build a wheel for win32, but that was probably broken because it included the 64bit lib :) |
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.
Impressive work! Shame the windows wheel test won't work. You could capture the filename in a variable, if that's the issue?
filename=$(ls dist/*.whl)
pip install $filename
That did the trick, thanks! |