headscale/Makefile

38 lines
861 B
Makefile
Raw Normal View History

# Calculate version
version = $(shell ./scripts/version-at-commit.sh)
build: generate
2021-09-27 10:26:18 -04: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 11:24:42 -04: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-13 16:58:35 -04:00
golangci-lint run --timeout 5m
compress: build
upx --brute headscale
generate:
rm -rf gen
buf generate proto
2021-10-27 02:40:39 -04: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