headscale/Makefile

56 lines
1.5 KiB
Makefile
Raw Normal View History

# Calculate version
version = $(shell ./scripts/version-at-commit.sh)
2021-11-13 16:39:20 +08:00
rwildcard=$(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2) $(filter $(subst *,%,$2),$d))
# GO_SOURCES = $(wildcard *.go)
# PROTO_SOURCES = $(wildcard **/*.proto)
GO_SOURCES = $(call rwildcard,,*.go)
PROTO_SOURCES = $(call rwildcard,,*.proto)
build:
GGO_ENABLED=0 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 23:24:42 +08:00
@go test -coverprofile=coverage.out ./...
test_integration:
go test -tags integration -timeout 30m -count=1 ./...
test_integration_cli:
go test -tags integration -v integration_cli_test.go integration_common_test.go
coverprofile_func:
go tool cover -func=coverage.out
coverprofile_html:
go tool cover -html=coverage.out
lint:
2021-11-13 16:39:20 +08:00
golangci-lint run --fix --timeout 10m
fmt:
2021-11-13 17:20:51 +08:00
prettier --write '**/**.{ts,js,md,yaml,yml,sass,css,scss,html}'
2021-11-13 16:39:20 +08:00
golines --max-len=88 --base-formatter=gofumpt -w $(GO_SOURCES)
clang-format -style="{BasedOnStyle: Google, IndentWidth: 4, AlignConsecutiveDeclarations: true, AlignConsecutiveAssignments: true, ColumnLimit: 0}" -i $(PROTO_SOURCES)
2021-10-30 00:42:56 +08:00
proto-lint:
cd proto/ && buf lint
compress: build
upx --brute headscale
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