2021-04-25 10:21:04 -04:00
|
|
|
# Calculate version
|
2022-04-11 02:54:12 -04:00
|
|
|
version = $(git describe --always --tags --dirty)
|
2021-04-25 10:21:04 -04:00
|
|
|
|
2021-11-13 03:39:20 -05: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)
|
|
|
|
|
|
|
|
|
2021-10-27 02:48:30 -04:00
|
|
|
build:
|
2022-04-11 08:56:11 -04:00
|
|
|
CGO_ENABLED=0 go build -trimpath -buildmode=pie -mod=readonly -ldflags "-s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=$(version)" cmd/headscale/headscale.go
|
2021-04-25 10:21:04 -04:00
|
|
|
|
|
|
|
dev: lint test build
|
|
|
|
|
|
|
|
test:
|
2021-04-25 11:24:42 -04:00
|
|
|
@go test -coverprofile=coverage.out ./...
|
2021-04-25 10:21:04 -04:00
|
|
|
|
2021-08-08 12:50:32 -04:00
|
|
|
test_integration:
|
2022-02-24 06:28:34 -05:00
|
|
|
go test -failfast -tags integration -timeout 30m -count=1 ./...
|
2021-08-08 12:50:32 -04:00
|
|
|
|
2021-11-26 18:34:11 -05:00
|
|
|
test_integration_cli:
|
|
|
|
go test -tags integration -v integration_cli_test.go integration_common_test.go
|
|
|
|
|
2022-03-05 13:34:06 -05:00
|
|
|
test_integration_derp:
|
|
|
|
go test -tags integration -v integration_embedded_derp_test.go integration_common_test.go
|
|
|
|
|
2021-04-25 10:21:04 -04:00
|
|
|
coverprofile_func:
|
|
|
|
go tool cover -func=coverage.out
|
|
|
|
|
|
|
|
coverprofile_html:
|
|
|
|
go tool cover -html=coverage.out
|
|
|
|
|
|
|
|
lint:
|
2021-11-13 03:39:20 -05:00
|
|
|
golangci-lint run --fix --timeout 10m
|
|
|
|
|
|
|
|
fmt:
|
2021-11-13 04:20:51 -05:00
|
|
|
prettier --write '**/**.{ts,js,md,yaml,yml,sass,css,scss,html}'
|
2021-11-13 03:39:20 -05: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-04-25 10:21:04 -04:00
|
|
|
|
2021-10-29 12:42:56 -04:00
|
|
|
proto-lint:
|
2022-04-21 14:23:21 -04:00
|
|
|
cd proto/ && go run github.com/bufbuild/buf/cmd/buf lint
|
2021-10-29 12:42:56 -04:00
|
|
|
|
2021-04-25 10:21:04 -04:00
|
|
|
compress: build
|
2021-05-02 14:47:36 -04:00
|
|
|
upx --brute headscale
|
2021-04-25 10:21:04 -04:00
|
|
|
|
2021-10-26 16:53:10 -04:00
|
|
|
generate:
|
|
|
|
rm -rf gen
|
2022-04-21 14:23:21 -04:00
|
|
|
go run github.com/bufbuild/buf/cmd/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
|