2021-04-25 08:21:04 -06:00
|
|
|
# Calculate version
|
|
|
|
version = $(shell ./scripts/version-at-commit.sh)
|
|
|
|
|
|
|
|
build:
|
2021-09-27 08:26:18 -06:00
|
|
|
go build -ldflags "-s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=$(version)" cmd/headscale/headscale.go
|
2021-04-25 08:21:04 -06:00
|
|
|
|
|
|
|
dev: lint test build
|
|
|
|
|
|
|
|
test:
|
2021-04-25 09:24:42 -06:00
|
|
|
@go test -coverprofile=coverage.out ./...
|
2021-04-25 08:21:04 -06:00
|
|
|
|
2021-08-08 10:50:32 -06:00
|
|
|
test_integration:
|
2021-08-12 00:36:38 -06:00
|
|
|
go test -tags integration -timeout 30m ./...
|
2021-08-08 10:50:32 -06:00
|
|
|
|
2021-04-25 08:21:04 -06:00
|
|
|
coverprofile_func:
|
|
|
|
go tool cover -func=coverage.out
|
|
|
|
|
|
|
|
coverprofile_html:
|
|
|
|
go tool cover -html=coverage.out
|
|
|
|
|
|
|
|
lint:
|
|
|
|
golint
|
2021-09-13 14:58:35 -06:00
|
|
|
golangci-lint run --timeout 5m
|
2021-04-25 08:21:04 -06:00
|
|
|
|
|
|
|
compress: build
|
2021-05-02 12:47:36 -06:00
|
|
|
upx --brute headscale
|
2021-04-25 08:21:04 -06:00
|
|
|
|