Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
629438d
WIP: use the pagemap_scan ioctl to selectively reset an instance's di…
tschneidereit May 10, 2025
3bf97ae
Less hacky, and supporting tables, too
tschneidereit May 11, 2025
45bdc41
Bugfixes
tschneidereit May 11, 2025
8d72bbd
WIP: memcpy instead of pread
tschneidereit May 12, 2025
8298f19
Refactor support for pagemap
alexcrichton Jul 29, 2025
0a074af
Simplify WASI internal implementations (#11365)
alexcrichton Aug 1, 2025
9ad5317
Improve safety documentation
alexcrichton Aug 1, 2025
47a8a8a
Fix some lints
alexcrichton Aug 1, 2025
24c9a0b
Skip ioctl tests when it's not supported
alexcrichton Aug 1, 2025
41eedf4
Fix a memory leak by moving impls around
alexcrichton Aug 1, 2025
05deb62
Fix no vm build
alexcrichton Aug 1, 2025
e6a662b
Share stdio implementations in WASIp{2,3} (#11368)
alexcrichton Aug 1, 2025
7ccd258
Use `trappable_error_type` in WASIp3 sockets (#11373)
alexcrichton Aug 1, 2025
f7a5aa3
Unify WASIp{2,3} context structures (#11370)
alexcrichton Aug 2, 2025
61a371a
CacheConfigs are always enabled; clarify directory validation (#11376)
jder Aug 4, 2025
2eda638
Bump Wasmtime to 37.0.0 (#11381)
wasmtime-publish Aug 5, 2025
7315a82
Mirror WASIp{2,3} cli implementations (#11378)
alexcrichton Aug 5, 2025
db87fbe
Mirror WASIp{2,3} clocks implementations (#11377)
alexcrichton Aug 5, 2025
d526299
Mirror WASIp{2,3} sockets implementations (#11379)
alexcrichton Aug 5, 2025
4ac219f
Rename "preview{0,1}" in `wasmtime-wasi` to "p{0,1}" (#11380)
alexcrichton Aug 5, 2025
00dd668
Use the same `UdpSocket` in WASIp{2,3} (#11384)
alexcrichton Aug 6, 2025
66b4bf3
x64: handle ISA features more completely (#11272)
abrown Aug 6, 2025
63123e2
Review comments
alexcrichton Aug 6, 2025
f1d3dfc
Add more pagemap-specific documentation
alexcrichton Aug 6, 2025
6157b96
Add more docs, refactor implementation slightly
alexcrichton Aug 6, 2025
3ab28c8
Improve `category_*` docs
alexcrichton Aug 6, 2025
3cbeb24
Build C API release artifacts with unwind tables (#11383)
alexcrichton Aug 6, 2025
57e55cc
Fix compile
alexcrichton Aug 6, 2025
2241a85
Merge remote-tracking branch 'upstream/main'
alexcrichton Aug 6, 2025
a1b487e
Fix doc tests
alexcrichton Aug 6, 2025
75cb934
Merge remote-tracking branch 'alex-wasmtime/pagemap_scan'
alexcrichton Aug 6, 2025
cb1d970
Fix more docs
alexcrichton Aug 6, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,14 @@ jobs:
- name: wasmtime-wasi-http
checks: |
-p wasmtime-wasi-http --no-default-features

- name: wasmtime-wasi
checks: |
-p wasmtime-wasi --no-default-features
-p wasmtime-wasi --no-default-features --features p0
-p wasmtime-wasi --no-default-features --features p1
-p wasmtime-wasi --no-default-features --features p2
-p wasmtime-wasi --no-default-features --features p3
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
Loading
Loading