feat: complete MQ-only dispatcher and OSS upload flow

This commit is contained in:
2026-09-22 21:09:06 +08:00
parent 704652bd0d
commit a2fcc4aabb
265 changed files with 18689 additions and 1469 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/sh
set -eu
profile=${COVER_PROFILE:-/tmp/go-sip-coverage.out}
business_profile=${COVER_BUSINESS_PROFILE:-/tmp/go-sip-coverage-business.out}
GOMAXPROCS=${GOMAXPROCS:-2} go test -p 1 -coverpkg=./... -coverprofile="$profile" ./...
awk 'NR == 1 || index($0, "/gen/") == 0' "$profile" > "$business_profile"
go tool cover -func="$business_profile"