mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-12-24 13:48:04 +08:00
2、Rtmp协议接收releaseStream时不再回复client 3、优化RTSP的AAC数据的解析 4、修复RTSP出错写日志时Panic的问题 5、engine启动插件循序遵循插件注册顺序
42 lines
792 B
YAML
42 lines
792 B
YAML
project_name: m7s
|
|
archives:
|
|
-
|
|
files:
|
|
- config.yaml
|
|
- local.monibuca.com.key
|
|
- local.monibuca.com_bundle.pem
|
|
builds:
|
|
- id: "with-debug"
|
|
env: [CGO_ENABLED=0]
|
|
ldflags:
|
|
- -s -w -X main.version={{.Tag}}
|
|
ignore:
|
|
- goos: darwin
|
|
goarch: arm64
|
|
- goos: windows
|
|
goarch: arm64
|
|
goos:
|
|
- linux
|
|
- windows
|
|
- darwin
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
hooks:
|
|
pre:
|
|
- bash -c "debug=1 go generate ./..."
|
|
- go mod tidy
|
|
|
|
- id: "without-debug"
|
|
env: [CGO_ENABLED=0]
|
|
ldflags:
|
|
- -s -w -X main.version={{.Tag}}
|
|
goos:
|
|
- windows
|
|
- darwin
|
|
goarch:
|
|
- arm64
|
|
hooks:
|
|
pre:
|
|
- bash -c "debug=0 go generate ./..."
|
|
- go mod tidy |