mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	* fix #1482, restore foregin keys, add constraints * #1562, fix tests, fix formatting * #1562: fix tests * #1562: fix local run of test_integration
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # Calculate version
 | |
| version ?= $(shell git describe --always --tags --dirty)
 | |
| 
 | |
| 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
 | |
| 
 | |
| # GO_SOURCES = $(wildcard *.go)
 | |
| # PROTO_SOURCES = $(wildcard **/*.proto)
 | |
| GO_SOURCES = $(call rwildcard,,*.go)
 | |
| PROTO_SOURCES = $(call rwildcard,,*.proto)
 | |
| 
 | |
| 
 | |
| build:
 | |
| 	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 \
 | |
| 		-v $$PWD/control_logs:/tmp/control \
 | |
| 		golang:1 \
 | |
| 		go run gotest.tools/gotestsum@latest -- -failfast ./... -timeout 120m -parallel 8
 | |
| 
 | |
| lint:
 | |
| 	golangci-lint run --fix --timeout 10m
 | |
| 
 | |
| fmt:
 | |
| 	prettier --write '**/**.{ts,js,md,yaml,yml,sass,css,scss,html}'
 | |
| 	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)
 | |
| 
 | |
| proto-lint:
 | |
| 	cd proto/ && go run github.com/bufbuild/buf/cmd/buf lint
 | |
| 
 | |
| compress: build
 | |
| 	upx --brute headscale
 | |
| 
 | |
| generate:
 | |
| 	rm -rf gen
 | |
| 	buf generate proto
 |