mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-30 15:02:00 -08:00
Some checks failed
code_lint / golangci_lint (push) Has been cancelled
code_lint / mod_tidy (push) Has been cancelled
code_lint / api_docs (push) Has been cancelled
code_test / test_64 (push) Has been cancelled
code_test / test_32 (push) Has been cancelled
code_test / test_e2e (push) Has been cancelled
28 lines
693 B
Makefile
28 lines
693 B
Makefile
BASE_IMAGE = golang:1.24-alpine3.20
|
|
LINT_IMAGE = golangci/golangci-lint:v2.2.0
|
|
NODE_IMAGE = node:20-alpine3.20
|
|
|
|
.PHONY: $(shell ls)
|
|
|
|
help:
|
|
@echo "usage: make [action]"
|
|
@echo ""
|
|
@echo "available actions:"
|
|
@echo ""
|
|
@echo " format format source files"
|
|
@echo " test run tests"
|
|
@echo " test-32 run tests on a 32-bit system"
|
|
@echo " test-e2e run end-to-end tests"
|
|
@echo " lint run linters"
|
|
@echo " apidocs generate api docs HTML"
|
|
@echo " binaries build binaries for all platforms"
|
|
@echo " dockerhub build and push images to Docker Hub"
|
|
@echo ""
|
|
|
|
blank :=
|
|
define NL
|
|
|
|
$(blank)
|
|
endef
|
|
|
|
include scripts/*.mk
|