mediamtx/Makefile

281 lines
9.0 KiB
Makefile
Raw Normal View History

2019-12-28 21:07:03 +00:00
2021-11-23 12:11:49 +00:00
BASE_IMAGE = golang:1.17-alpine3.14
2022-04-07 10:50:35 +00:00
LINT_IMAGE = golangci/golangci-lint:v1.45.2
2021-11-23 12:11:49 +00:00
NODE_IMAGE = node:14-alpine3.14
2019-12-28 21:07:03 +00:00
2020-08-07 10:02:02 +00:00
.PHONY: $(shell ls)
2019-12-28 21:07:03 +00:00
help:
@echo "usage: make [action]"
@echo ""
@echo "available actions:"
@echo ""
2020-01-03 21:39:55 +00:00
@echo " mod-tidy run go mod tidy"
@echo " format format source files"
2020-12-05 19:42:59 +00:00
@echo " test run tests"
2021-07-03 10:14:31 +00:00
@echo " test32 run tests on a 32-bit system"
2020-12-05 19:42:59 +00:00
@echo " lint run linters"
2021-08-07 16:28:27 +00:00
@echo " bench NAME=n run bench environment"
2020-07-09 20:57:43 +00:00
@echo " run run app"
2021-08-07 17:03:07 +00:00
@echo " apidocs-lint run api docs linters"
@echo " apidocs-gen generate HTML from api docs"
2020-01-03 21:39:55 +00:00
@echo " release build release assets"
2020-06-21 19:07:04 +00:00
@echo " dockerhub build and push docker hub images"
2019-12-28 21:07:03 +00:00
@echo ""
2020-05-10 19:32:40 +00:00
blank :=
define NL
$(blank)
endef
2019-12-28 21:07:03 +00:00
mod-tidy:
2021-08-07 16:28:27 +00:00
docker run --rm -it -v $(PWD):/s -w /s $(BASE_IMAGE) \
2021-05-23 16:43:49 +00:00
sh -c "apk add git && GOPROXY=direct go get && go mod tidy"
define DOCKERFILE_FORMAT
FROM $(BASE_IMAGE)
2022-04-07 10:50:35 +00:00
RUN go install mvdan.cc/gofumpt@v0.3.1
2021-05-23 16:43:49 +00:00
endef
export DOCKERFILE_FORMAT
2019-12-28 21:07:03 +00:00
format:
2021-05-23 16:43:49 +00:00
echo "$$DOCKERFILE_FORMAT" | docker build -q . -f - -t temp
docker run --rm -it -v $(PWD):/s -w /s temp \
2021-10-30 11:06:29 +00:00
sh -c "gofumpt -l -w ."
2019-12-28 21:07:03 +00:00
2020-05-10 19:32:40 +00:00
define DOCKERFILE_TEST
2021-07-03 10:14:31 +00:00
ARG ARCH
FROM $$ARCH/$(BASE_IMAGE)
2021-11-03 20:42:29 +00:00
RUN apk add --no-cache make docker-cli gcc musl-dev
2020-05-10 19:32:40 +00:00
WORKDIR /s
COPY go.mod go.sum ./
RUN go mod download
endef
export DOCKERFILE_TEST
2021-07-03 10:14:31 +00:00
test:
echo "$$DOCKERFILE_TEST" | docker build -q . -f - -t temp --build-arg ARCH=amd64
docker run --rm \
--network=host \
-v /var/run/docker.sock:/var/run/docker.sock:ro \
-v $(PWD):/s \
2021-07-03 10:14:31 +00:00
temp \
make test-nodocker COVERAGE=1
2021-07-03 10:14:31 +00:00
test32:
echo "$$DOCKERFILE_TEST" | docker build -q . -f - -t temp --build-arg ARCH=i386
docker run --rm \
--network=host \
-v /var/run/docker.sock:/var/run/docker.sock:ro \
-v $(PWD):/s \
2021-07-03 10:14:31 +00:00
temp \
make test-nodocker COVERAGE=0
2021-07-03 10:14:31 +00:00
ifeq ($(COVERAGE),1)
TEST_INTERNAL_OPTS=-race -coverprofile=coverage-internal.txt
TEST_CORE_OPTS=-race -coverprofile=coverage-core.txt
endif
2021-02-13 19:13:23 +00:00
test-internal:
go test -v $(TEST_INTERNAL_OPTS) \
./internal/conf \
./internal/confwatcher \
./internal/externalcmd \
./internal/hls \
./internal/logger \
./internal/rlimit \
2022-06-04 23:06:40 +00:00
./internal/rtmp/...
test-core:
2021-02-13 19:13:23 +00:00
$(foreach IMG,$(shell echo testimages/*/ | xargs -n1 basename), \
docker build -q testimages/$(IMG) -t rtsp-simple-server-test-$(IMG)$(NL))
go test -v $(TEST_CORE_OPTS) ./internal/core
2021-02-13 19:13:23 +00:00
test-nodocker: test-internal test-core
2021-02-13 19:13:23 +00:00
2020-12-05 19:42:59 +00:00
lint:
docker run --rm -v $(PWD):/app -w /app \
2021-02-04 20:55:00 +00:00
$(LINT_IMAGE) \
2020-12-06 11:22:00 +00:00
golangci-lint run -v
2020-12-05 19:42:59 +00:00
bench:
docker build -q . -f bench/$(NAME)/Dockerfile -t temp
2020-12-16 12:23:42 +00:00
docker run --rm -it -p 9999:9999 temp
2020-09-18 17:59:07 +00:00
2020-06-08 19:36:42 +00:00
define DOCKERFILE_RUN
2021-08-07 16:28:27 +00:00
FROM $(BASE_IMAGE)
2021-07-03 10:14:31 +00:00
RUN apk add --no-cache ffmpeg
2020-06-08 19:36:42 +00:00
WORKDIR /s
COPY go.mod go.sum ./
RUN go mod download
COPY . ./
2020-07-27 13:23:40 +00:00
RUN go build -o /out .
2020-10-16 20:49:49 +00:00
WORKDIR /
ARG CONFIG_RUN
RUN echo "$$CONFIG_RUN" > rtsp-simple-server.yml
2020-06-08 19:36:42 +00:00
endef
export DOCKERFILE_RUN
2020-07-09 20:57:43 +00:00
define CONFIG_RUN
#rtspAddress: :8555
#rtpAddress: :8002
#rtcpAddress: :8003
#metrics: yes
2020-09-18 17:59:07 +00:00
#pprof: yes
2020-07-09 20:57:43 +00:00
paths:
all:
2022-03-04 17:09:49 +00:00
# runOnReady: ffmpeg -i rtsp://localhost:$$RTSP_PORT/$$RTSP_PATH -c copy -f mpegts myfile_$$RTSP_PATH.ts
# readUser: test
# readPass: tast
2021-03-22 18:51:25 +00:00
# runOnDemand: ffmpeg -re -stream_loop -1 -i testimages/ffmpeg/emptyvideo.mkv -c copy -f rtsp rtsp://localhost:$$RTSP_PORT/$$RTSP_PATH
2020-08-15 20:43:57 +00:00
# proxied:
2020-11-01 16:33:06 +00:00
# source: rtsp://192.168.2.198:554/stream
2020-07-30 11:31:18 +00:00
# sourceProtocol: tcp
# sourceOnDemand: yes
2020-11-01 16:33:06 +00:00
# runOnDemand: ffmpeg -i rtsp://192.168.2.198:554/stream -c copy -f rtsp rtsp://localhost:$$RTSP_PORT/proxied2
2020-07-19 20:39:38 +00:00
# original:
2022-03-04 17:09:49 +00:00
# runOnReady: ffmpeg -i rtsp://localhost:554/original -b:a 64k -c:v libx264 -preset ultrafast -b:v 500k -max_muxing_queue_size 1024 -f rtsp rtsp://localhost:8554/compressed
2020-07-09 20:57:43 +00:00
endef
export CONFIG_RUN
2020-06-08 19:36:42 +00:00
run:
2020-10-16 20:49:49 +00:00
echo "$$DOCKERFILE_RUN" | docker build -q . -f - -t temp \
--build-arg CONFIG_RUN="$$CONFIG_RUN"
2020-06-08 19:36:42 +00:00
docker run --rm -it \
--network=host \
2020-06-08 19:36:42 +00:00
temp \
2020-10-16 20:49:49 +00:00
sh -c "/out"
2020-06-08 19:36:42 +00:00
2021-08-07 17:03:07 +00:00
define DOCKERFILE_APIDOCS_LINT
2021-08-07 16:28:27 +00:00
FROM $(NODE_IMAGE)
2022-02-16 21:47:37 +00:00
RUN yarn global add @redocly/openapi-cli@1.0.0-beta.82
2021-08-07 16:28:27 +00:00
endef
2021-08-07 17:03:07 +00:00
export DOCKERFILE_APIDOCS_LINT
2021-08-07 16:28:27 +00:00
2021-08-07 17:03:07 +00:00
apidocs-lint:
echo "$$DOCKERFILE_APIDOCS_LINT" | docker build . -f - -t temp
2021-08-07 16:28:27 +00:00
docker run --rm -v $(PWD)/apidocs:/s -w /s temp \
sh -c "openapi lint openapi.yaml"
2019-12-28 21:07:03 +00:00
define DOCKERFILE_RELEASE
2021-08-07 16:28:27 +00:00
FROM $(BASE_IMAGE)
2019-12-28 21:07:03 +00:00
RUN apk add --no-cache zip make git tar
WORKDIR /s
COPY go.mod go.sum ./
RUN go mod download
COPY . ./
RUN make release-nodocker
endef
export DOCKERFILE_RELEASE
2021-08-07 17:03:07 +00:00
define DOCKERFILE_APIDOCS_GEN
FROM $(NODE_IMAGE)
2022-02-16 21:47:37 +00:00
RUN yarn global add redoc-cli@0.13.7
2021-08-07 17:03:07 +00:00
endef
export DOCKERFILE_APIDOCS_GEN
apidocs-gen:
echo "$$DOCKERFILE_APIDOCS_GEN" | docker build . -f - -t temp
docker run --rm -v $(PWD)/apidocs:/s -w /s temp \
sh -c "redoc-cli bundle openapi.yaml"
2019-12-28 21:07:03 +00:00
release:
2021-08-07 16:28:27 +00:00
echo "$$DOCKERFILE_RELEASE" | docker build . -f - -t temp
docker run --rm -v $(PWD):/out \
2019-12-28 21:07:03 +00:00
temp sh -c "rm -rf /out/release && cp -r /s/release /out/"
release-nodocker:
2020-06-21 19:07:04 +00:00
$(eval export CGO_ENABLED=0)
2019-12-28 21:07:03 +00:00
$(eval VERSION := $(shell git describe --tags))
2021-08-14 08:47:48 +00:00
$(eval GOBUILD := go build -ldflags '-X github.com/aler9/rtsp-simple-server/internal/core.version=$(VERSION)')
rm -rf tmp && mkdir tmp
2019-12-28 21:07:03 +00:00
rm -rf release && mkdir release
cp rtsp-simple-server.yml tmp/
2019-12-28 21:07:03 +00:00
GOOS=windows GOARCH=amd64 $(GOBUILD) -o tmp/rtsp-simple-server.exe
cd tmp && zip -q $(PWD)/release/rtsp-simple-server_$(VERSION)_windows_amd64.zip rtsp-simple-server.exe rtsp-simple-server.yml
2019-12-28 21:07:03 +00:00
GOOS=linux GOARCH=amd64 $(GOBUILD) -o tmp/rtsp-simple-server
tar -C tmp -czf $(PWD)/release/rtsp-simple-server_$(VERSION)_linux_amd64.tar.gz --owner=0 --group=0 rtsp-simple-server rtsp-simple-server.yml
2019-12-28 21:07:03 +00:00
GOOS=linux GOARCH=arm GOARM=6 $(GOBUILD) -o tmp/rtsp-simple-server
tar -C tmp -czf $(PWD)/release/rtsp-simple-server_$(VERSION)_linux_armv6.tar.gz --owner=0 --group=0 rtsp-simple-server rtsp-simple-server.yml
2019-12-28 21:07:03 +00:00
GOOS=linux GOARCH=arm GOARM=7 $(GOBUILD) -o tmp/rtsp-simple-server
tar -C tmp -czf $(PWD)/release/rtsp-simple-server_$(VERSION)_linux_armv7.tar.gz --owner=0 --group=0 rtsp-simple-server rtsp-simple-server.yml
2019-12-28 21:07:03 +00:00
GOOS=linux GOARCH=arm64 $(GOBUILD) -o tmp/rtsp-simple-server
2020-07-21 21:41:59 +00:00
tar -C tmp -czf $(PWD)/release/rtsp-simple-server_$(VERSION)_linux_arm64v8.tar.gz --owner=0 --group=0 rtsp-simple-server rtsp-simple-server.yml
2019-12-28 21:23:52 +00:00
GOOS=darwin GOARCH=amd64 $(GOBUILD) -o tmp/rtsp-simple-server
tar -C tmp -czf $(PWD)/release/rtsp-simple-server_$(VERSION)_darwin_amd64.tar.gz --owner=0 --group=0 rtsp-simple-server rtsp-simple-server.yml
2020-07-27 13:23:40 +00:00
define DOCKERFILE_DOCKERHUB
2020-06-21 19:07:04 +00:00
FROM --platform=linux/amd64 $(BASE_IMAGE) AS build
RUN apk add --no-cache git
WORKDIR /s
COPY go.mod go.sum ./
RUN go mod download
COPY . ./
ARG VERSION
ARG OPTS
RUN export CGO_ENABLED=0 $${OPTS} \
2021-08-14 08:47:48 +00:00
&& go build -ldflags "-X github.com/aler9/rtsp-simple-server/internal/core.version=$$VERSION" -o /rtsp-simple-server
2020-06-21 19:07:04 +00:00
FROM scratch
COPY --from=build /rtsp-simple-server /
COPY --from=build /s/rtsp-simple-server.yml /
ENTRYPOINT [ "/rtsp-simple-server" ]
2020-04-18 17:12:52 +00:00
endef
2020-07-27 13:23:40 +00:00
export DOCKERFILE_DOCKERHUB
2020-04-18 17:12:52 +00:00
2020-06-21 19:07:04 +00:00
dockerhub:
$(eval export DOCKER_CLI_EXPERIMENTAL=enabled)
$(eval VERSION := $(shell git describe --tags))
2020-12-15 12:38:23 +00:00
docker login -u $(DOCKER_USER) -p $(DOCKER_PASSWORD)
docker buildx rm builder 2>/dev/null || true
2020-07-20 13:53:01 +00:00
rm -rf $$HOME/.docker/manifests/*
2020-06-21 19:07:04 +00:00
docker buildx create --name=builder --use
2020-07-27 13:23:40 +00:00
echo "$$DOCKERFILE_DOCKERHUB" | docker buildx build . -f - --build-arg VERSION=$(VERSION) \
2020-06-21 19:07:04 +00:00
--push -t aler9/rtsp-simple-server:$(VERSION)-amd64 --build-arg OPTS="GOOS=linux GOARCH=amd64" --platform=linux/amd64
2020-07-27 13:23:40 +00:00
echo "$$DOCKERFILE_DOCKERHUB" | docker buildx build . -f - --build-arg VERSION=$(VERSION) \
2020-06-21 19:07:04 +00:00
--push -t aler9/rtsp-simple-server:$(VERSION)-armv6 --build-arg OPTS="GOOS=linux GOARCH=arm GOARM=6" --platform=linux/arm/v6
2020-07-27 13:23:40 +00:00
echo "$$DOCKERFILE_DOCKERHUB" | docker buildx build . -f - --build-arg VERSION=$(VERSION) \
2020-06-21 19:07:04 +00:00
--push -t aler9/rtsp-simple-server:$(VERSION)-armv7 --build-arg OPTS="GOOS=linux GOARCH=arm GOARM=7" --platform=linux/arm/v7
2020-07-27 13:23:40 +00:00
echo "$$DOCKERFILE_DOCKERHUB" | docker buildx build . -f - --build-arg VERSION=$(VERSION) \
--push -t aler9/rtsp-simple-server:$(VERSION)-arm64v8 --build-arg OPTS="GOOS=linux GOARCH=arm64" --platform=linux/arm64/v8
2020-06-21 19:07:04 +00:00
2020-07-20 13:53:01 +00:00
docker manifest create aler9/rtsp-simple-server:$(VERSION) \
$(foreach ARCH,amd64 armv6 armv7 arm64v8,aler9/rtsp-simple-server:$(VERSION)-$(ARCH))
2020-06-21 19:07:04 +00:00
docker manifest push aler9/rtsp-simple-server:$(VERSION)
2020-07-20 13:53:01 +00:00
docker manifest create aler9/rtsp-simple-server:latest-amd64 aler9/rtsp-simple-server:$(VERSION)-amd64
docker manifest push aler9/rtsp-simple-server:latest-amd64
2020-06-21 19:07:04 +00:00
2020-07-20 13:53:01 +00:00
docker manifest create aler9/rtsp-simple-server:latest-armv6 aler9/rtsp-simple-server:$(VERSION)-armv6
docker manifest push aler9/rtsp-simple-server:latest-armv6
2020-06-21 19:07:04 +00:00
2020-07-20 13:53:01 +00:00
docker manifest create aler9/rtsp-simple-server:latest-armv7 aler9/rtsp-simple-server:$(VERSION)-armv7
docker manifest push aler9/rtsp-simple-server:latest-armv7
2020-06-21 19:07:04 +00:00
2020-07-20 13:53:01 +00:00
docker manifest create aler9/rtsp-simple-server:latest-arm64v8 aler9/rtsp-simple-server:$(VERSION)-arm64v8
docker manifest push aler9/rtsp-simple-server:latest-arm64v8
2020-06-21 19:07:04 +00:00
2020-07-20 13:53:01 +00:00
docker manifest create aler9/rtsp-simple-server:latest \
$(foreach ARCH,amd64 armv6 armv7 arm64v8,aler9/rtsp-simple-server:$(VERSION)-$(ARCH))
2020-06-21 19:07:04 +00:00
docker manifest push aler9/rtsp-simple-server:latest
docker buildx rm builder
2020-07-20 13:53:01 +00:00
rm -rf $$HOME/.docker/manifests/*