Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions .github/workflows/build-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
for dir in examples/cdn/*/; do
[ -f "$dir/Cargo.toml" ] || continue
echo "::group::$dir"
(cd "$dir" && cargo build --release --target wasm32-wasip1)
cargo build --release --target wasm32-wasip1 --manifest-path "$dir/Cargo.toml"
echo "::endgroup::"
done

Expand All @@ -37,7 +37,7 @@ jobs:
for dir in examples/http/basic/*/; do
[ -f "$dir/Cargo.toml" ] || continue
echo "::group::$dir"
(cd "$dir" && cargo build --release --target wasm32-wasip1)
cargo build --release --target wasm32-wasip1 --manifest-path "$dir/Cargo.toml"
echo "::endgroup::"
done

Expand All @@ -46,6 +46,6 @@ jobs:
for dir in examples/http/wasi/*/; do
[ -f "$dir/Cargo.toml" ] || continue
echo "::group::$dir"
(cd "$dir" && cargo build --release --target wasm32-wasip2)
cargo build --release --target wasm32-wasip2 --manifest-path "$dir/Cargo.toml"
echo "::endgroup::"
done
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: cargo build --release --all-features

- name: Documentation
run: cargo doc
run: cargo doc --package fastedge --package fastedge-derive

- name: Run Clippy
run: cargo clippy --all-targets --all-features
run: cargo clippy --all-targets --all-features
Loading
Loading