Skip to content

release: 0.5.4 — fix #148, shared top-level text dropped on partial-e… #197

release: 0.5.4 — fix #148, shared top-level text dropped on partial-e…

release: 0.5.4 — fix #148, shared top-level text dropped on partial-e… #197

Workflow file for this run

name: Windows
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v7
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-pc-windows-msvc
- name: Build weave-mcp
run: cargo build --release --target x86_64-pc-windows-msvc --bin weave-mcp --features vendored-openssl
- name: Build weave-cli
run: cargo build --release --target x86_64-pc-windows-msvc --bin weave --features vendored-openssl
- name: Build weave-driver
run: cargo build --release --target x86_64-pc-windows-msvc --bin weave-driver --features vendored-openssl
- name: Run tests
run: cargo test --workspace
- name: In-tree behaviour suite (must exist, must run)
run: |
cargo test -p weave-core --test public_properties
cargo test -p weave-driver --test public_properties
- name: Check binaries exist
shell: pwsh
run: |
dir target/x86_64-pc-windows-msvc/release/weave-mcp.exe
dir target/x86_64-pc-windows-msvc/release/weave.exe
dir target/x86_64-pc-windows-msvc/release/weave-driver.exe