2021-04-25 22:21:04 +08:00
|
|
|
# Calculate version
|
|
|
|
version = $(shell ./scripts/version-at-commit.sh)
|
|
|
|
|
2021-10-27 14:48:30 +08:00
|
|
|
build:
|
2021-09-27 22:26:18 +08:00
|
|
|
go build -ldflags "-s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=$(version)" cmd/headscale/headscale.go
|
2021-04-25 22:21:04 +08:00
|
|
|
|
|
|
|
dev: lint test build
|
|
|
|
|
|
|
|
test:
|
2021-04-25 23:24:42 +08:00
|
|
|
@go test -coverprofile=coverage.out ./...
|
2021-04-25 22:21:04 +08:00
|
|
|
|
2021-08-09 00:50:32 +08:00
|
|
|
test_integration:
|
2021-08-12 14:36:38 +08:00
|
|
|
go test -tags integration -timeout 30m ./...
|
2021-08-09 00:50:32 +08:00
|
|
|
|
2021-04-25 22:21:04 +08:00
|
|
|
coverprofile_func:
|
|
|
|
go tool cover -func=coverage.out
|
|
|
|
|
|
|
|
coverprofile_html:
|
|
|
|
go tool cover -html=coverage.out
|
|
|
|
|
|
|
|
lint:
|
2021-10-27 15:10:32 +08:00
|
|
|
golangci-lint run --fix
|
2021-04-25 22:21:04 +08:00
|
|
|
|
2021-10-30 00:42:56 +08:00
|
|
|
proto-lint:
|
|
|
|
cd proto/ && buf lint
|
|
|
|
|
2021-04-25 22:21:04 +08:00
|
|
|
compress: build
|
2021-05-03 02:47:36 +08:00
|
|
|
upx --brute headscale
|
2021-04-25 22:21:04 +08:00
|
|
|
|
2021-10-27 04:53:10 +08:00
|
|
|
generate:
|
|
|
|
rm -rf gen
|
|
|
|
buf generate proto
|
2021-10-27 14:40:39 +08:00
|
|
|
|
|
|
|
install-protobuf-plugins:
|
|
|
|
go install \
|
|
|
|
github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway \
|
|
|
|
github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2 \
|
|
|
|
google.golang.org/protobuf/cmd/protoc-gen-go \
|
|
|
|
google.golang.org/grpc/cmd/protoc-gen-go-grpc
|