Wire HDHomeRun observations and recover Forge OP Stack
This commit is contained in:
parent
8065860449
commit
0d86104762
18 changed files with 1613 additions and 58 deletions
|
|
@ -79,6 +79,18 @@ On Linux / forge hosts, the equivalent worker path lives in `ec-node`:
|
|||
- publish with
|
||||
`ec-node nbc-wt-publish --url https://cdn.moq.dev/anon --name forge-nbc-sports-philly --source-url 'https://www.nbc.com/live?brand=nbc-sports-philadelphia'`
|
||||
- for unattended hosts, persist the Chrome profile with `EVERY_CHANNEL_NBC_PROFILE_DIR=/path/to/profile`
|
||||
- to automate a Verizon popup on Linux / forge, pass MVPD credentials via env or file paths:
|
||||
`EVERY_CHANNEL_NBC_MVPD_USERNAME`, `EVERY_CHANNEL_NBC_MVPD_PASSWORD`,
|
||||
`EVERY_CHANNEL_NBC_MVPD_USERNAME_FILE`, `EVERY_CHANNEL_NBC_MVPD_PASSWORD_FILE`
|
||||
- the NixOS module can point the Linux worker at root-managed credential files with
|
||||
`services.every-channel.ec-node.nbc.mvpdUsernameFile` and
|
||||
`services.every-channel.ec-node.nbc.mvpdPasswordFile`
|
||||
- for forge-style isolation, the NixOS module can keep only the NBC publisher inside a rootless
|
||||
user+network namespace backed by `slirp4netns` with
|
||||
`services.every-channel.ec-node.nbc.isolateWithUserNetns = true`
|
||||
- pair that with `services.every-channel.ec-node.nbc.requireMullvad = true` to block worker startup
|
||||
until the host Mullvad daemon is connected; optionally pin a region/country family with
|
||||
`services.every-channel.ec-node.nbc.mullvadLocation = "USA"`
|
||||
- the NixOS module exposes `services.every-channel.ec-node.nbc.*` for a persistent Xvfb display plus
|
||||
an optional local-only VNC bridge so MVPD auth can be completed only when the session is cold
|
||||
- on Linux virtual displays, the worker disables Chrome GPU acceleration by default; only set
|
||||
|
|
@ -115,6 +127,47 @@ Requires Nix (so `ac-ffmpeg` finds FFmpeg headers):
|
|||
./scripts/e2e-hdhr.sh --host <HDHR_HOST> --channel <CHANNEL>
|
||||
```
|
||||
|
||||
## HDHomeRun + Observation Chain E2E Test
|
||||
|
||||
This runs a local Anvil chain, deploys the observation registry/ledger, publishes one HDHomeRun
|
||||
manifest epoch, and verifies that the manifest-derived observation finalizes on-chain.
|
||||
|
||||
Requires Nix, Foundry, and a reachable local HDHomeRun:
|
||||
|
||||
```sh
|
||||
./scripts/e2e-hdhr-blockchain.sh --host <HDHR_HOST> --channel <CHANNEL>
|
||||
```
|
||||
|
||||
## Local HDHomeRun Publisher Against Remote Observation Chain
|
||||
|
||||
The remote OP Stack RPC on `ecp-forge` is intentionally local-only. From the local publisher box,
|
||||
tunnel it first:
|
||||
|
||||
```sh
|
||||
ssh -N -L 9545:127.0.0.1:28545 root@git.every.channel
|
||||
```
|
||||
|
||||
Then run a local HDHomeRun publisher with observation submission enabled:
|
||||
|
||||
```sh
|
||||
cargo run -p ec-node -- moq-publish \
|
||||
--publish-manifests \
|
||||
--epoch-chunks 1 \
|
||||
--broadcast-name local-hdhr-8-1 \
|
||||
--observation-rpc-url http://127.0.0.1:9545 \
|
||||
--observation-ledger <OBSERVATION_LEDGER_ADDRESS> \
|
||||
--observation-private-key-file /path/to/witness.key \
|
||||
hdhr --host <HDHR_HOST> --channel <CHANNEL>
|
||||
```
|
||||
|
||||
Environment fallbacks are also supported:
|
||||
|
||||
- `EVERY_CHANNEL_OBSERVATION_RPC_URL`
|
||||
- `EVERY_CHANNEL_OBSERVATION_LEDGER`
|
||||
- `EVERY_CHANNEL_OBSERVATION_PRIVATE_KEY`
|
||||
- `EVERY_CHANNEL_OBSERVATION_PRIVATE_KEY_FILE`
|
||||
- `EVERY_CHANNEL_OBSERVATION_PARENT_HASH`
|
||||
|
||||
## Mesh E2E Test (Split Sources)
|
||||
|
||||
This runs two publishers over the same broadcast:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue