101 lines
3 KiB
YAML
101 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/...
|