Two post-merge CI failures:
1. nvsim Dashboard → GitHub Pages: `wasm-pack: command not found`.
`cargo install wasm-pack --locked` doesn't reliably leave the binary
on PATH inside subsequent steps. Switched both Pages + a11y workflows
to the canonical wasm-pack installer:
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
which deposits to /home/runner/.cargo/bin/ that's already on PATH.
2. nvsim-server → ghcr.io: cargo can't resolve workspace.dependencies
because the partial Cargo.toml copies only two crates. Dockerfile now
generates a stub workspace Cargo.toml inline that lists just nvsim +
nvsim-server with the workspace-deps section copied verbatim.
Co-Authored-By: claude-flow <ruv@ruv.net>
|
||
|---|---|---|
| .. | ||
| cd.yml | ||
| ci.yml | ||
| dashboard-a11y.yml | ||
| dashboard-pages.yml | ||
| desktop-release.yml | ||
| firmware-ci.yml | ||
| firmware-qemu.yml | ||
| nvsim-server-docker.yml | ||
| security-scan.yml | ||
| update-submodules.yml | ||
| verify-pipeline.yml | ||