-
Notifications
You must be signed in to change notification settings - Fork 69
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
wasmtime: update to v13.0.0. #368
base: main
Are you sure you want to change the base?
wasmtime: update to v13.0.0. #368
Conversation
correct rustix Signed-off-by: rahulchaphalkar <[email protected]>
c7b4000
to
66da60d
Compare
Signed-off-by: rahulchaphalkar <[email protected]>
Ugh, I suspect that you need to update |
Signed-off-by: rahulchaphalkar <[email protected]>
I just updated wasmtime in |
Without updating rules_rust (after updating wasmtime in above commit), the tests complete when I run them with I updated I can work on resolving these issues, but just want to understand if that's fine to do. Or I can use the latest head from rules_rust, where the requirement for bazel 6.3.0 has been reverted. I'm still not sure if updated |
Rerunning the CI |
I'll re-run it after other tests finish, but the failure on Windows looks real. |
The windows failure seems to be related to a newly added crate in wasmtime v13.0.0,
|
I'm wondering if this is hitting Windows's Maximum Path Length Limitation, since Perhaps updating runner image to |
From what I gathered from actions/runner-images#4913 windows-2019 image should already have enabled long paths. Can test it if needed by adding this snippet -
|
FWIW, updating CI to |
Signed-off-by: rahulchaphalkar <[email protected]>
I've updated CI to use the newer windows image. |
Thanks!
I don't think this is related, since that file isn't checked into git. |
The failures seem to be due to bazel being unable to find msvc tools. Perhaps simply installing the 2022 tools on the system would be sufficient. |
That might not be sufficient on its own, I'm running into the same thing with #375 , using updated runners. |
I think I've figured out the issue, and somewhat of a workaround for the Windows CI failure which was occurring on windows-2019 image (not the latest CI update to windows-2022)
is shortened by bazel to
It seems the linker and even win utilities like The workaround is to use bazel startup option
and the this passed all tests on my local system. However, I needed to manually delete the Planning on opening a bazel issue as well, and still looking at what is the best way to resolve this. |
Updated wasmtime to v13.0.0, resolved duplicate dependency issues caused by cargo raze.