Compare commits

..

1 Commits

Author SHA1 Message Date
dependabot[bot] 339b626fb9 chore(deps): bump actions/github-script from 6 to 9
Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 9.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](https://github.com/actions/github-script/compare/v6...v9)

---
updated-dependencies:
- dependency-name: actions/github-script
  dependency-version: '9'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-05-20 01:13:14 +00:00
11 changed files with 8 additions and 46 deletions
+2 -2
View File
@@ -275,7 +275,7 @@ jobs:
done done
- name: Update deployment status - name: Update deployment status
uses: actions/github-script@v6 uses: actions/github-script@v9
with: with:
script: | script: |
const deployEnv = '${{ needs.pre-deployment.outputs.deploy_env }}'; const deployEnv = '${{ needs.pre-deployment.outputs.deploy_env }}';
@@ -326,7 +326,7 @@ jobs:
- name: Create deployment issue on failure - name: Create deployment issue on failure
if: needs.deploy-production.result == 'failure' if: needs.deploy-production.result == 'failure'
uses: actions/github-script@v6 uses: actions/github-script@v9
with: with:
script: | script: |
github.rest.issues.create({ github.rest.issues.create({
-8
View File
@@ -216,14 +216,10 @@ jobs:
htmlcov/ htmlcov/
# Performance and Load Tests # Performance and Load Tests
# NOTE: tests/performance/locustfile.py and the src.api.main app path both
# predate the v1→archive/v1 reorganisation. continue-on-error: true until a
# proper locust suite is added under archive/v1/tests/performance/.
performance-test: performance-test:
name: Performance Tests name: Performance Tests
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [test] needs: [test]
continue-on-error: true
if: github.event_name == 'push' && github.ref == 'refs/heads/main' if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps: steps:
- name: Checkout code - name: Checkout code
@@ -242,7 +238,6 @@ jobs:
pip install locust pip install locust
- name: Start application - name: Start application
working-directory: archive/v1
run: | run: |
uvicorn src.api.main:app --host 0.0.0.0 --port 8000 & uvicorn src.api.main:app --host 0.0.0.0 --port 8000 &
sleep 10 sleep 10
@@ -357,7 +352,6 @@ jobs:
pip install -r requirements.txt pip install -r requirements.txt
- name: Generate OpenAPI spec - name: Generate OpenAPI spec
working-directory: archive/v1
run: | run: |
python -c " python -c "
from src.api.main import app from src.api.main import app
@@ -379,8 +373,6 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [code-quality, test, rust-tests, performance-test, docker-build, docs] needs: [code-quality, test, rust-tests, performance-test, docker-build, docs]
if: always() if: always()
permissions:
contents: write # required by softprops/action-gh-release
# GitHub Actions does not allow `secrets.X` directly in step-level `if:` # GitHub Actions does not allow `secrets.X` directly in step-level `if:`
# expressions — only `env.X`. Promote the secret to env at job scope so # expressions — only `env.X`. Promote the secret to env at job scope so
# the gating expression below is parseable. # the gating expression below is parseable.
+1 -1
View File
@@ -478,7 +478,7 @@ jobs:
- name: Create security issue on critical findings - name: Create security issue on critical findings
continue-on-error: true continue-on-error: true
if: needs.sast.result == 'failure' || needs.dependency-scan.result == 'failure' if: needs.sast.result == 'failure' || needs.dependency-scan.result == 'failure'
uses: actions/github-script@v6 uses: actions/github-script@v9
with: with:
script: | script: |
github.rest.issues.create({ github.rest.issues.create({
+1 -1
View File
@@ -1,7 +1,7 @@
# π RuView # π RuView
<p align="center"> <p align="center">
<a href="http://Cognitum.One/RuView?UTM=GH-header"> <a href="https://x.com/rUv/status/2037556932802761004">
<img src="assets/ruview-small-gemini.jpg" alt="RuView - WiFi DensePose" width="100%"> <img src="assets/ruview-small-gemini.jpg" alt="RuView - WiFi DensePose" width="100%">
</a> </a>
</p> </p>
+2 -20
View File
@@ -25,23 +25,6 @@ This firmware captures WiFi Channel State Information (CSI) from an ESP32-S3 and
For users who want to get running fast. Detailed explanations follow in later sections. For users who want to get running fast. Detailed explanations follow in later sections.
### 0. Pre-built binaries (v0.6.5 — skip the build step)
Pre-built binaries are in `firmware/esp32-csi-node/release_bins/` (version: see `release_bins/version.txt`).
Flash them directly:
```bash
python -m esptool --chip esp32s3 --port COM7 --baud 460800 \
write_flash --flash_mode dio --flash_size 8MB \
0x0 firmware/esp32-csi-node/release_bins/bootloader.bin \
0x8000 firmware/esp32-csi-node/release_bins/partition-table.bin \
0xf000 firmware/esp32-csi-node/release_bins/ota_data_initial.bin \
0x20000 firmware/esp32-csi-node/release_bins/esp32-csi-node.bin
```
For 4 MB boards use `release_bins/esp32-csi-node-4mb.bin` and `release_bins/partition-table-4mb.bin`
with `--flash_size 4MB`.
### 1. Build (Docker -- the only reliable method) ### 1. Build (Docker -- the only reliable method)
```bash ```bash
@@ -311,9 +294,8 @@ python -m serial.tools.miniterm COM7 115200
Expected output after boot: Expected output after boot:
``` ```
I (396) csi_collector: Early capture node_id=1 (before WiFi init, #232/#390) I (321) main: ESP32-S3 CSI Node (ADR-018) -- Node ID: 1
I (406) main: ESP32-S3 CSI Node (ADR-018) -- v0.6.5 -- Node ID: 1 I (345) main: WiFi STA initialized, connecting to SSID: wifi-densepose
I (566) main: WiFi STA initialized, connecting to SSID: wifi-densepose
I (1023) main: Connected to WiFi I (1023) main: Connected to WiFi
I (1025) main: CSI streaming active -> 192.168.1.100:5005 (edge_tier=2, OTA=ready, WASM=ready) I (1025) main: CSI streaming active -> 192.168.1.100:5005 (edge_tier=2, OTA=ready, WASM=ready)
``` ```
+2 -2
View File
@@ -294,7 +294,7 @@ def flash_nvs(port, baud, nvs_bin, chip):
"--chip", chip, "--chip", chip,
"--port", port, "--port", port,
"--baud", str(baud), "--baud", str(baud),
"write_flash", "write-flash",
hex(NVS_PARTITION_OFFSET), bin_path, hex(NVS_PARTITION_OFFSET), bin_path,
] ]
print(f"Flashing NVS partition ({len(nvs_bin)} bytes) to {port} (chip={chip})...") print(f"Flashing NVS partition ({len(nvs_bin)} bytes) to {port} (chip={chip})...")
@@ -499,7 +499,7 @@ def main():
f.write(nvs_bin) f.write(nvs_bin)
print(f"NVS binary saved to {out} ({len(nvs_bin)} bytes)") print(f"NVS binary saved to {out} ({len(nvs_bin)} bytes)")
print(f"Flash manually: python -m esptool --chip {args.chip} --port {args.port} " print(f"Flash manually: python -m esptool --chip {args.chip} --port {args.port} "
f"write_flash 0x9000 {out}") f"write-flash 0x9000 {out}")
# Persist merged state even on dry-run so a subsequent real flash from # Persist merged state even on dry-run so a subsequent real flash from
# this machine sees the same staged config. # this machine sees the same staged config.
path = save_state(args.port, args.state_dir, merged) path = save_state(args.port, args.state_dir, merged)
Binary file not shown.
@@ -1,3 +0,0 @@
0.6.5
git-sha: d72e06fc8
built: 2026-05-20
-9
View File
@@ -213,15 +213,6 @@
], ],
"rationale": "Without quantization, the SHA-256 of features_to_bytes() diverges across SIMD backends (Intel AVX2/AVX-512 vs Apple Silicon NEON) because scipy.fft's pocketfft kernels reorder vectorized FP operations differently per build. IEEE 754 guarantees per-operation determinism, not associativity. Rounding to 9 decimal places (~5 orders of magnitude headroom over observed ULP drift) collapses the cross-platform divergence to a single canonical hash. Removing the round() call reintroduces the macOS arm64 vs Linux x86_64 hash mismatch in issue #560.", "rationale": "Without quantization, the SHA-256 of features_to_bytes() diverges across SIMD backends (Intel AVX2/AVX-512 vs Apple Silicon NEON) because scipy.fft's pocketfft kernels reorder vectorized FP operations differently per build. IEEE 754 guarantees per-operation determinism, not associativity. Rounding to 9 decimal places (~5 orders of magnitude headroom over observed ULP drift) collapses the cross-platform divergence to a single canonical hash. Removing the round() call reintroduces the macOS arm64 vs Linux x86_64 hash mismatch in issue #560.",
"ref": "https://github.com/ruvnet/RuView/issues/560" "ref": "https://github.com/ruvnet/RuView/issues/560"
},
{
"id": "RuView#679",
"title": "ESP32-S3 CSI: csi_collector_set_node_id() called before wifi_init_sta() so node_id is never clobbered",
"files": ["firmware/esp32-csi-node/main/main.c"],
"require": ["csi_collector_set_node_id"],
"forbid": ["/csi_collector_init.*node_id\\s*=\\s*1[^0-9]/"],
"rationale": "release_bins/ shipped v0.4.3.1 binaries that lacked csi_collector_set_node_id() — every provisioned node reported node_id=1 over UDP regardless of NVS value, making a 4-node deployment look like a single node. main.c must call csi_collector_set_node_id(g_nvs_config.node_id) immediately after nvs_config_load() and before wifi_init_sta(). Reverting silently breaks multi-node deployments with no build-time error.",
"ref": "https://github.com/ruvnet/RuView/issues/679"
} }
] ]
} }