-
Notifications
You must be signed in to change notification settings - Fork 53
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
chore(ci): Run client + host workflow on 32 bit platform #907
base: main
Are you sure you want to change the base?
Conversation
9618760
to
bc505b2
Compare
seems like no runner wants to pick up this job...
|
339843a
to
ecd8825
Compare
ecd8825
to
e34c218
Compare
not sure why the syntax isn't being parsed, feel free to take over
|
It appears this won't work because github actions checkout steps require a node version only available in 64 bit builds. |
ah ok, I was looking at this https://github.com/yuki-kimoto/SPVM-Regex/blob/master/.github/workflows/linux-ubuntu-latest-32bit.yml @refcell |
It looks like @refcell's fix does the trick, but the image we're using does not have all of the tools that are preloaded into GitHub's |
ah I thought rustc was clever enough to infer the target in this case. is that what you mean? @clabby |
Ah nope - this isn't to do with rustc, the image that the actual runner is executing the job on doesn't have the tools that are required. GitHub's runner images come pre-loaded with a bunch of stuff (gnu utils, docker, nodejs, etc.) that this new i386 image doesn't have. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. Additional details and impacted files☔ View full report in Codecov by Sentry. |
Closes #849