Skip to content

Commit 818dc89

Browse files
intendednullclaude
andcommitted
ci(wasm): exclude willow-feedback from wasm32 workspace check
willow-feedback is a native-only worker binary (tokio "full" + reqwest + mio), like willow-relay/worker/replay/storage/agent which are already excluded. The WASM Check job builds the workspace minus those for wasm32; feedback was missing from the exclude list, so CI tried to compile it for wasm and failed with mio's `sys::*` unresolved imports. `just check-wasm` uses an explicit include list (no feedback) so it passed locally — this aligns CI with that. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent e981a48 commit 818dc89

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
target
128128
key: wasm-${{ hashFiles('**/Cargo.lock') }}
129129
restore-keys: wasm-
130-
- run: cargo check --target wasm32-unknown-unknown --workspace --exclude willow-relay --exclude willow-worker --exclude willow-replay --exclude willow-storage --exclude willow-agent
130+
- run: cargo check --target wasm32-unknown-unknown --workspace --exclude willow-relay --exclude willow-worker --exclude willow-replay --exclude willow-storage --exclude willow-agent --exclude willow-feedback
131131
- name: Clippy (wasm32, willow-web)
132132
run: cargo clippy --target wasm32-unknown-unknown -p willow-web --all-targets -- -D warnings
133133

0 commit comments

Comments
 (0)