1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-10-17 20:05:55 +02:00
juanfont.headscale/Makefile

40 lines
873 B
Makefile
Raw Normal View History

# Calculate version
version = $(shell ./scripts/version-at-commit.sh)
build:
2021-09-27 16:26:18 +02: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 17:24:42 +02: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:
2021-10-27 09:10:32 +02:00
golangci-lint run --fix
2021-10-29 18:42:56 +02:00
proto-lint:
cd proto/ && buf lint
compress: build
upx --brute headscale
generate:
rm -rf gen
buf generate proto
2021-10-27 08:40:39 +02: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