mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			873 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			873 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # Calculate version
 | |
| version = $(shell ./scripts/version-at-commit.sh)
 | |
| 
 | |
| build:
 | |
| 	go build -ldflags "-s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=$(version)" cmd/headscale/headscale.go
 | |
| 
 | |
| dev: lint test build
 | |
| 
 | |
| test:
 | |
| 	@go test -coverprofile=coverage.out ./...
 | |
| 
 | |
| test_integration:
 | |
| 	go test -tags integration -timeout 30m ./...
 | |
| 
 | |
| coverprofile_func:
 | |
| 	go tool cover -func=coverage.out
 | |
| 
 | |
| coverprofile_html:
 | |
| 	go tool cover -html=coverage.out
 | |
| 
 | |
| lint:
 | |
| 	golangci-lint run --fix
 | |
| 
 | |
| proto-lint:
 | |
| 	cd proto/ && buf lint
 | |
| 
 | |
| compress: build
 | |
| 	upx --brute headscale
 | |
| 
 | |
| generate:
 | |
| 	rm -rf gen
 | |
| 	buf generate proto
 | |
| 
 | |
| 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
 |