-
Notifications
You must be signed in to change notification settings - Fork 638
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: add caching of executables and artifacts #11532
Conversation
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.
LGTM
9feb04b
to
0c434e6
Compare
This largely mirrors the code in near_vm_runner module. I heard some people pondering what it would be like to use a higher quality backend. Outside LLVM, Cranelift is by far the next in line in produced code quality. Since we already have wasmtime in place, might as well wire it up completely for a full experience.
0c434e6
to
aeb4c6d
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #11532 +/- ##
==========================================
- Coverage 71.47% 71.47% -0.01%
==========================================
Files 788 788
Lines 160774 160854 +80
Branches 160774 160854 +80
==========================================
+ Hits 114919 114976 +57
- Misses 40842 40856 +14
- Partials 5013 5022 +9
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
This largely mirrors the code in near_vm_runner module. I heard some
people pondering what it would be like to use a higher quality backend.
Outside LLVM, Cranelift is by far the next in line in produced code
quality. Since we already have wasmtime in place, might as well wire it
up completely for a full experience.
Based on top of #11529
Part of #11319