headscale/Makefile

28 lines
535 B
Makefile
Raw Normal View History

# Calculate version
version = $(shell ./scripts/version-at-commit.sh)
build:
2021-08-24 21:49:15 +08:00
go build -ldflags "-s -w -X github.com/juanfont/headscale/cmd/headscale/cli.version=$(version)" cmd/headscale/headscale.go
dev: lint test build
test:
2021-04-25 23:24:42 +08:00
@go test -coverprofile=coverage.out ./...
test_integration:
go test -tags integration -timeout 30m ./...
coverprofile_func:
go tool cover -func=coverage.out
coverprofile_html:
go tool cover -html=coverage.out
lint:
golint
2021-09-14 04:58:35 +08:00
golangci-lint run --timeout 5m
compress: build
upx --brute headscale