Conversation
The oci-loader uses the componentized/oci client to load a wasm component from an OCI registry. The path-loader uses the other loader components routing based on the path. Using a wac fork until map support lands. Signed-off-by: Scott Andrews <scott@andrews.me>
Signed-off-by: Scott Andrews <scott@andrews.me>
`test-loader` is a wasi:cli/command which accepts a single argument,
the path to load, loads that path and dumps the bytes to stdout.
The Makefile now supports fetching "third party" components via wkg.
Creating components via wac scripts is further enhanced so that only
the dependencies of that script are built. This is done by parsing the
wac script for components prefixed with 'local:', the remainder of the
name is treated as a component make target.
make components/test-loader && \
wasmtime run \
-Wcomponent-model-map \
-Shttp \
--dir=. \
./lib/test-loader.wasm \
oci://ghcr.io/componentized/config/empty:0.2.1 \
| wasm-tools component wit
Signed-off-by: Scott Andrews <scott@andrews.me>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The oci-loader uses the componentized/oci client to load a wasm component from an OCI registry.
The path-loader uses the other loader components routing based on the path.
Using a wac fork until map support lands.