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