mirror of
https://github.com/ruvnet/RuView
synced 2026-06-17 11:33:19 +00:00
df617145d6
* feat(ADR-262 P3): live RuField surface — RuView sensing speaks RuField on /api/field + /ws/field Wire the P1 `wifi-densepose-rufield` bridge into the live `wifi-densepose-sensing-server` so the governed sensing cycle emits real signed RuField `FieldEvent`s on two additive endpoints. - Cargo: add the `wifi-densepose-rufield` path dep (the single coupling point, ADR-262 §5.4 — no new RuView-internal coupling). - New `src/rufield_surface.rs` (kept out of the 8k-line main.rs): `FieldSurface` holds a dedicated ed25519 `Signer` + a bounded ring of recent events + the `/ws/field` broadcast topic; `GET /api/field` and `GET /ws/field` handlers; a standalone `router()` for isolated testing. - Signer (defers the P2 key decision, ADR-262 §8 Q1): a STANDALONE dev/sensing key from `WDP_RUFIELD_SIGNING_SEED`, else a deterministic dev default with a logged WARN. Reusing the `cog-ha-matter` Ed25519 key is the deferred P2 call — P3 does not pre-empt it. - Tap: at the ESP32 governed-trust cycle (`main.rs` ~5886 observe_cycle / ~5938 SensingUpdate build), `emit_rufield_event` joins the cycle's features/classification/signal_field with the engine's effective_class/demoted trust state into a `SensingSnapshot` and surfaces it via the bridge. Existing endpoints (`/ws/sensing` etc.) are unchanged — purely additive. - Privacy egress: `network_egress_allowed` is fail-closed for an unattended live surface — only P1/P2 leave the box; P0 raw and P3/P4/P5 (identity/biometric/aggregate) are held edge-local. A `Derived` cycle maps to P4/P5 and never surfaces. - No-phantom: `emit` drops no-presence cycles (no fabricated events). Gates (tests/rufield_surface_test.rs, tower::oneshot, 4/0): well-formed signed event (WifiCsi, P2 not P1, is_fusable, real timestamp); empty cycle → no phantom; Derived trust never surfaces; mixed stream surfaces only egress-safe events. Honesty (ADR-262 §0/§6): real plumbing on a live endpoint, NOT accuracy. Single-link CSI with its existing caveats (no validated room-coordinate accuracy); dedicated dev signing key pending the P2 ownership decision; no accuracy claim. Co-Authored-By: claude-flow <ruv@ruv.net> * docs(ADR-262 P3): mark P1+P3 implemented; document /api/field + /ws/field; CHANGELOG - ADR-262 Status → "P1 + P3 implemented"; add a P3 implementation-status block (tap site, endpoints, dedicated dev signer deferring the §8 Q1 key decision, fail-closed egress, gates). Keep the honesty framing: real plumbing on a live endpoint, not accuracy. - CHANGELOG [Unreleased]: add the ADR-262 P3 entry. - user-guide: add `/api/field` to the REST table + a "RuField surface (ADR-262 P3)" section covering `/api/field` + `/ws/field`, the fail-closed P1/P2-only egress, the WDP_RUFIELD_SIGNING_SEED dev key, and the no-accuracy honesty note. Co-Authored-By: claude-flow <ruv@ruv.net> * ci: checkout submodules everywhere + Dockerfile copies vendor/rufield Making wifi-densepose-rufield (ADR-262 bridge) a v2 workspace member means EVERY cargo-on-workspace context must have the vendor/rufield submodule present (cargo loads all member manifests). P1 only fixed the rust-tests job; this adds `submodules: recursive` to all workflow checkouts that run cargo (mqtt-integration was failing on the missing submodule manifest), and makes Dockerfile.rust COPY vendor/rufield/ to /vendor/rufield (matches the bridge's ../../../vendor/rufield path-dep under the collapsed Docker layout). update-submodules.yml left alone (it manages submodules itself). Co-Authored-By: claude-flow <ruv@ruv.net> --------- Co-authored-by: ruv <ruvnet@gmail.com>
191 lines
5.7 KiB
YAML
191 lines
5.7 KiB
YAML
name: Desktop Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'desktop-v*'
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'Version to release (e.g., 0.4.0)'
|
|
required: true
|
|
default: '0.4.0'
|
|
attach_to_existing:
|
|
description: 'Attach to existing release tag (leave empty to create new)'
|
|
required: false
|
|
default: ''
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build-macos:
|
|
name: Build macOS
|
|
runs-on: macos-latest
|
|
strategy:
|
|
matrix:
|
|
target: [aarch64-apple-darwin, x86_64-apple-darwin]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v6
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Setup Rust
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
targets: ${{ matrix.target }}
|
|
|
|
- name: Install frontend dependencies
|
|
working-directory: v2/crates/wifi-densepose-desktop/ui
|
|
run: npm ci
|
|
|
|
- name: Build frontend
|
|
working-directory: v2/crates/wifi-densepose-desktop/ui
|
|
run: npm run build
|
|
|
|
- name: Install Tauri CLI
|
|
run: cargo install tauri-cli --version "^2.0.0"
|
|
|
|
- name: Build Tauri app
|
|
working-directory: v2/crates/wifi-densepose-desktop
|
|
run: cargo tauri build --target ${{ matrix.target }}
|
|
env:
|
|
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
|
|
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
|
|
|
|
- name: Get architecture name
|
|
id: arch
|
|
run: |
|
|
if [ "${{ matrix.target }}" = "aarch64-apple-darwin" ]; then
|
|
echo "arch=arm64" >> $GITHUB_OUTPUT
|
|
else
|
|
echo "arch=x64" >> $GITHUB_OUTPUT
|
|
fi
|
|
|
|
- name: Package macOS app
|
|
run: |
|
|
cd v2/target/${{ matrix.target }}/release/bundle/macos
|
|
zip -r "RuView-Desktop-${{ github.event.inputs.version || '0.4.0' }}-macos-${{ steps.arch.outputs.arch }}.zip" "RuView Desktop.app"
|
|
|
|
- name: Upload macOS artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ruview-macos-${{ steps.arch.outputs.arch }}
|
|
path: v2/target/${{ matrix.target }}/release/bundle/macos/*.zip
|
|
|
|
build-windows:
|
|
name: Build Windows
|
|
runs-on: windows-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v6
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Setup Rust
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
- name: Install frontend dependencies
|
|
working-directory: v2/crates/wifi-densepose-desktop/ui
|
|
run: npm ci
|
|
|
|
- name: Build frontend
|
|
working-directory: v2/crates/wifi-densepose-desktop/ui
|
|
run: npm run build
|
|
|
|
- name: Install Tauri CLI
|
|
run: cargo install tauri-cli --version "^2.0.0"
|
|
|
|
- name: Build Tauri app
|
|
working-directory: v2/crates/wifi-densepose-desktop
|
|
run: cargo tauri build
|
|
env:
|
|
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
|
|
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
|
|
|
|
- name: Upload Windows MSI artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ruview-windows-msi
|
|
path: v2/target/release/bundle/msi/*.msi
|
|
|
|
- name: Upload Windows NSIS artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ruview-windows-nsis
|
|
path: v2/target/release/bundle/nsis/*.exe
|
|
|
|
create-release:
|
|
name: Create Release
|
|
needs: [build-macos, build-windows]
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Download all artifacts
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
path: artifacts
|
|
|
|
- name: List artifacts
|
|
run: find artifacts -type f
|
|
|
|
- name: Create or Update Release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
name: RuView Desktop v${{ github.event.inputs.version || '0.4.0' }}
|
|
tag_name: ${{ github.event.inputs.attach_to_existing || format('desktop-v{0}', github.event.inputs.version || '0.4.0') }}
|
|
draft: false
|
|
prerelease: false
|
|
generate_release_notes: ${{ github.event.inputs.attach_to_existing == '' }}
|
|
files: |
|
|
artifacts/**/*.zip
|
|
artifacts/**/*.msi
|
|
artifacts/**/*.exe
|
|
artifacts/**/*.dmg
|
|
body: |
|
|
## RuView Desktop v${{ github.event.inputs.version || '0.4.0' }}
|
|
|
|
WiFi-based human pose estimation desktop application.
|
|
|
|
### Downloads
|
|
|
|
| Platform | Architecture | Download |
|
|
|----------|--------------|----------|
|
|
| macOS | Apple Silicon (M1/M2/M3) | `RuView-Desktop-*-macos-arm64.zip` |
|
|
| macOS | Intel | `RuView-Desktop-*-macos-x64.zip` |
|
|
| Windows | x64 | `RuView-Desktop-*.msi` or `RuView-Desktop-*.exe` |
|
|
|
|
### Installation
|
|
|
|
**macOS:**
|
|
1. Download the appropriate `.zip` file for your Mac
|
|
2. Extract the zip file
|
|
3. Move `RuView Desktop.app` to your Applications folder
|
|
4. Right-click and select "Open" (first time only, to bypass Gatekeeper)
|
|
|
|
**Windows:**
|
|
1. Download the `.msi` installer
|
|
2. Run the installer
|
|
3. Launch RuView Desktop from the Start menu
|
|
|
|
### Requirements
|
|
- macOS 11.0+ (Big Sur or later)
|
|
- Windows 10/11 (64-bit)
|