Phase 7.3 strangler reorg — update every reference to the renamed / dissolved crates across the boundary scripts and CI workflows. tools/: - check-wasm-bundle.sh: openpencil-shell-web -> op-host-web; the wasm-bindgen output filenames follow the op_host_web lib name - check-jian-boundaries.sh: shell-native -> op-host-native, shell-web -> op-host-web - check-widget-boundary.sh: WEB_SRC + path-exclusion regexes -> crates/op-host-web; openpencil_shell_core::widgets -> op_editor_ui::widgets (the dissolved shim's real source crate) .github/workflows/: - rust-multiplatform.yml: wasm + mobile-check jobs -> op-host-web / op-host-native; the mobile shell-core clean check -> op-editor-ui - rust-release.yml: cargo build -p openpencil-desktop -> -p op-host-desktop (the shipped executable name is unchanged) - wasm-bundle-check.yml: -p openpencil-shell-web -> -p op-host-web Cargo.toml skia-patch comment updated. Boundary checks pass; the wasm-bundle gate cleanly skips while EMSDK is unset.
49 lines
1.4 KiB
YAML
49 lines
1.4 KiB
YAML
name: WASM bundle check (kickoff §1.2)
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'Cargo.toml'
|
|
- 'Cargo.lock'
|
|
- 'crates/**'
|
|
- 'deny.toml'
|
|
- '.github/workflows/wasm-bundle-check.yml'
|
|
push:
|
|
branches: [main, 'feat/rust-ification']
|
|
|
|
jobs:
|
|
wasm32-check:
|
|
name: cargo check --target wasm32-unknown-unknown
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
toolchain: '1.94'
|
|
targets: wasm32-unknown-unknown
|
|
- uses: Swatinem/rust-cache@v2
|
|
with:
|
|
shared-key: wasm32-cache
|
|
- name: Forward — bucket A crates compile on wasm32
|
|
run: |
|
|
cargo check --target wasm32-unknown-unknown \
|
|
-p op-host-web --no-default-features --features web
|
|
|
|
wasm32-deny:
|
|
name: cargo-deny --target wasm32-unknown-unknown check bans
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
targets: wasm32-unknown-unknown
|
|
- name: Reverse — blacklisted crates not in wasm bundle
|
|
uses: EmbarkStudios/cargo-deny-action@v2 # cargo-deny 0.18+ via the action (Phase 1 Task 1.8 finding)
|
|
with:
|
|
command: check bans
|
|
arguments: --target wasm32-unknown-unknown
|