Three artifacts that close out the easier half of the M4 milestone:
1. .forgejo/workflows/test.yml — CI on every push and PR. Three jobs:
- lint-and-vet: go vet + go build (~30s)
- test: go test -race -short ./... + a no-race coverage
pass that uploads coverage.out as an artifact
- webrtc-smoke: TestIntegration_FiveViewerFanout and the rest of
the WebRTC subsystem tests in isolation, so a
failure on the egress path stays readable in the
log.
Pinned to Go 1.24 to match go.mod. The forge has a
forgejo-runner sibling container; this YAML uses GitHub Actions
syntax which Forgejo Actions accepts unchanged.
2. test/whep-player.html — self-contained browser WHEP subscriber for
manual smoke testing. RTCPeerConnection (recvonly V+A) + fetch()
POST/DELETE/PATCH against /api/v3/whep/:id, ICE/PC state pills,
inbound-bitrate sampling at 1 Hz, codec hint pulled from the answer
SDP, JWT token field, ?url=&token= shareable query string. No
external deps; works from file:// or any static host.
3. test/TESTING.md — short doc that ties together the in-process race
tests, the browser player, and the existing Pion CLI helper at
test/whep-client/. Notes the latency p95 gate as a follow-up.
Latency gate (FFmpeg drawtext frame counter + decode-side pixel
sampling, p95 < 300ms RTMP / < 200ms SRT) is queued for a separate
PR — it's a several-hundred-line addition in its own right and
shouldn't block CI from landing.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
100 lines
3 KiB
YAML
100 lines
3 KiB
YAML
# Forgejo Actions CI for Datarhei — Dragon Fork.
|
|
#
|
|
# Mirrors the upstream go-tests.yml shape (GitHub Actions syntax),
|
|
# but pinned to Go 1.24 to match go.mod and adds the M3 race-detector
|
|
# pass. The forgejo-runner picks this up automatically.
|
|
#
|
|
# Triggered on every push and pull request. Two jobs:
|
|
# - lint-and-vet: cheap, fast feedback (~30s)
|
|
# - test: full test suite with -race, ~3 minutes including
|
|
# the integration tests in app/webrtc that bind UDP
|
|
# sockets and run a real Pion handshake.
|
|
|
|
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- 'm[0-9]*-*'
|
|
- 'fix/**'
|
|
pull_request:
|
|
|
|
jobs:
|
|
lint-and-vet:
|
|
name: vet + build
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '1.24'
|
|
cache: true
|
|
|
|
- name: go vet
|
|
run: go vet ./...
|
|
|
|
- name: go build
|
|
run: go build ./...
|
|
|
|
test:
|
|
name: race tests
|
|
runs-on: ubuntu-22.04
|
|
needs: lint-and-vet
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '1.24'
|
|
cache: true
|
|
|
|
# Integration tests need ephemeral UDP ports above 32768; the
|
|
# default sysctl on ubuntu runners covers this, so no extra
|
|
# setup is required.
|
|
|
|
- name: go test -race -short
|
|
run: go test -race -short -count=1 ./...
|
|
env:
|
|
# The integration tests start Pion peers; tighten the timeout
|
|
# so a flaky network-bound test never sits the whole job.
|
|
GORACE: 'halt_on_error=1'
|
|
|
|
- name: go test (coverage, no race)
|
|
# Race detector + coverage in one pass slows things meaningfully;
|
|
# do them separately. This step's purpose is the coverage.out
|
|
# artifact, not a second correctness signal.
|
|
run: go test -coverprofile=coverage.out -covermode=atomic -count=1 ./...
|
|
|
|
- name: Upload coverage artifact
|
|
uses: actions/upload-artifact@v4
|
|
if: success() || failure()
|
|
with:
|
|
name: coverage-go-${{ github.sha }}
|
|
path: coverage.out
|
|
if-no-files-found: warn
|
|
retention-days: 14
|
|
|
|
# --- WebRTC subsystem-only smoke ---------------------------------
|
|
# The 5-viewer fanout test catches the largest class of regressions
|
|
# for the egress path. Promoted to its own job so a failure on the
|
|
# WebRTC side reads cleanly in the actions log instead of being
|
|
# buried among ~80 packages of unrelated Core tests.
|
|
webrtc-smoke:
|
|
name: WebRTC smoke (5-viewer fanout)
|
|
runs-on: ubuntu-22.04
|
|
needs: lint-and-vet
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '1.24'
|
|
cache: true
|
|
|
|
- name: WebRTC integration tests (race)
|
|
run: |
|
|
go test -race -count=1 -v \
|
|
-run 'TestIntegration_|TestSubsystem_TeardownHookFiresOnProcessStop|TestHandler_' \
|
|
./app/webrtc/... ./core/webrtc/...
|