release: 0.5.4 — fix #148, shared top-level text dropped on partial-e… #197
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |