2021-04-25 22:21:04 +08:00
|
|
|
# Calculate version
|
2022-06-12 17:01:17 +08:00
|
|
|
version ?= $(shell git describe --always --tags --dirty)
|
2021-04-25 22:21:04 +08:00
|
|
|
|
2021-11-13 16:39:20 +08:00
|
|
|
rwildcard=$(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2) $(filter $(subst *,%,$2),$d))
|
|
|
|
|
2022-06-04 18:11:10 +08:00
|
|
|
# Determine if OS supports pie
|
|
|
|
GOOS ?= $(shell uname | tr '[:upper:]' '[:lower:]')
|
|
|
|
ifeq ($(filter $(GOOS), openbsd netbsd soloaris plan9), )
|
|
|
|
pieflags = -buildmode=pie
|
|
|
|
else
|
|
|
|
endif
|
|
|
|
|
2021-11-13 16:39:20 +08:00
|
|
|
# GO_SOURCES = $(wildcard *.go)
|
|
|
|
# PROTO_SOURCES = $(wildcard **/*.proto)
|
|
|
|
GO_SOURCES = $(call rwildcard,,*.go)
|
|
|
|
PROTO_SOURCES = $(call rwildcard,,*.proto)
|
|
|
|
|
|
|
|
|
2021-10-27 14:48:30 +08:00
|
|
|
build:
|
2022-11-04 18:26:33 +08:00
|
|
|
nix build
|
2021-04-25 22:21:04 +08:00
|
|
|
|
|
|
|
dev: lint test build
|
|
|
|
|
|
|
|
test:
|
2023-11-23 15:31:33 +08:00
|
|
|
gotestsum -- -short -coverprofile=coverage.out ./...
|
2021-04-25 22:21:04 +08:00
|
|
|
|
2023-05-10 18:10:33 +08:00
|
|
|
test_integration:
|
2022-10-18 18:03:51 +08:00
|
|
|
docker run \
|
2022-10-18 18:09:57 +08:00
|
|
|
-t --rm \
|
2022-10-18 18:03:51 +08:00
|
|
|
-v ~/.cache/hs-integration-go:/go \
|
|
|
|
--name headscale-test-suite \
|
2022-10-18 22:00:24 +08:00
|
|
|
-v $$PWD:$$PWD -w $$PWD/integration \
|
2022-10-18 18:03:51 +08:00
|
|
|
-v /var/run/docker.sock:/var/run/docker.sock \
|
2024-05-16 08:40:14 +08:00
|
|
|
-v $$PWD/control_logs:/tmp/control \
|
2022-10-18 18:03:51 +08:00
|
|
|
golang:1 \
|
2023-11-23 15:31:33 +08:00
|
|
|
go run gotest.tools/gotestsum@latest -- -failfast ./... -timeout 120m -parallel 8
|
2021-04-25 22:21:04 +08:00
|
|
|
|
|
|
|
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-04-25 22:21:04 +08:00
|
|
|
|
2021-10-30 00:42:56 +08:00
|
|
|
proto-lint:
|
2022-04-22 02:23:21 +08:00
|
|
|
cd proto/ && go run github.com/bufbuild/buf/cmd/buf lint
|
2021-10-30 00:42:56 +08:00
|
|
|
|
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
|
2023-04-16 18:26:35 +08:00
|
|
|
buf generate proto
|