mediamtx/Makefile
bluenviron-bot 14ab95f39c
Some checks failed
code_lint / go (push) Has been cancelled
code_lint / go_mod (push) Has been cancelled
code_lint / docs (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
bump golangci-lint to 2.6.2 (#5205)
2025-11-18 04:17:11 +01:00

27 lines
653 B
Makefile

BASE_IMAGE = golang:1.25-alpine3.22
GOLANGCI_LINT_IMAGE = golangci/golangci-lint:v2.6.2
NODE_IMAGE = node:20-alpine3.22
.PHONY: $(shell ls)
help:
@echo "usage: make [action]"
@echo ""
@echo "available actions:"
@echo ""
@echo " format format code"
@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 " binaries build binaries for all supported platforms"
@echo " dockerhub build and push images to Docker Hub"
@echo ""
blank :=
define NL
$(blank)
endef
include scripts/*.mk