diff --git a/docs/operations/VPNRUNTIME_CI_FIXES_TRANSFER_2026-05-12.md b/docs/operations/VPNRUNTIME_CI_FIXES_TRANSFER_2026-05-12.md new file mode 100644 index 0000000..656854b --- /dev/null +++ b/docs/operations/VPNRUNTIME_CI_FIXES_TRANSFER_2026-05-12.md @@ -0,0 +1,38 @@ +# VPN Runtime CI Fixes Transfer Notes + +Date: 2026-05-12 + +Portable export includes two local commits: + +1. `a3c0998e` - Stabilize vpnruntime parallel flow test and add CI anti-flake gate +2. `fea5174e` - Add vpnruntime race check to CI + +Generated files (local, ignored by git) are in: + +- `artifacts/git-patches/0001-Stabilize-vpnruntime-parallel-flow-test-and-add-CI-a.patch` +- `artifacts/git-patches/0002-Add-vpnruntime-race-check-to-CI.patch` +- `artifacts/git-patches/vpnruntime-ci-fixes.bundle` + +## Apply as patches + +```bash +git am 0001-Stabilize-vpnruntime-parallel-flow-test-and-add-CI-a.patch +git am 0002-Add-vpnruntime-race-check-to-CI.patch +``` + +## Apply from bundle + +```bash +git fetch ./vpnruntime-ci-fixes.bundle +git cherry-pick a3c0998e fea5174e +``` + +## Validate + +From `agents/rap-node-agent`: + +```bash +go test ./internal/vpnruntime -count=20 +go test -race ./internal/vpnruntime +``` +