headscale/Makefile

54 lines
1.4 KiB
Makefile
Raw Normal View History

# Calculate version
2022-06-12 05:01:17 -04:00
version ?= $(shell git describe --always --tags --dirty)
2021-11-13 03:39:20 -05:00
rwildcard=$(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2) $(filter $(subst *,%,$2),$d))
# 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 03:39:20 -05:00
# GO_SOURCES = $(wildcard *.go)
# PROTO_SOURCES = $(wildcard **/*.proto)
GO_SOURCES = $(call rwildcard,,*.go)
PROTO_SOURCES = $(call rwildcard,,*.proto)
build:
2022-11-04 06:26:33 -04:00
nix build
dev: lint test build
test:
gotestsum -- -short -coverprofile=coverage.out ./...
test_integration:
docker run \
-t --rm \
-v ~/.cache/hs-integration-go:/go \
--name headscale-test-suite \
-v $$PWD:$$PWD -w $$PWD/integration \
-v /var/run/docker.sock:/var/run/docker.sock \
golang:1 \
go run gotest.tools/gotestsum@latest -- -failfast ./... -timeout 120m -parallel 8
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-10-29 12:42:56 -04:00
proto-lint:
cd proto/ && go run github.com/bufbuild/buf/cmd/buf lint
2021-10-29 12:42:56 -04:00
compress: build
upx --brute headscale
generate:
rm -rf gen
2023-04-16 06:26:35 -04:00
buf generate proto