2021-10-28 13:51:09 +03:00
|
|
|
IMAGE_REPO ?= tailscale/tailscale
|
2022-01-21 12:05:48 -08:00
|
|
|
SYNO_ARCH ?= "amd64"
|
|
|
|
SYNO_DSM ?= "7"
|
2023-09-19 17:51:22 +01:00
|
|
|
TAGS ?= "latest"
|
2021-10-28 13:51:09 +03:00
|
|
|
|
2023-02-16 14:35:54 -08:00
|
|
|
vet: ## Run go vet
|
2022-03-18 09:58:20 -07:00
|
|
|
./tool/go vet ./...
|
2020-08-24 21:35:27 -07:00
|
|
|
|
2023-02-16 14:35:54 -08:00
|
|
|
tidy: ## Run go mod tidy
|
2022-08-02 11:34:03 -07:00
|
|
|
./tool/go mod tidy
|
2022-03-21 11:03:45 -07:00
|
|
|
|
2023-12-07 14:23:01 -05:00
|
|
|
lint: ## Run golangci-lint
|
|
|
|
./tool/go run github.com/golangci/golangci-lint/cmd/golangci-lint run
|
|
|
|
|
2023-02-16 14:35:54 -08:00
|
|
|
updatedeps: ## Update depaware deps
|
2023-02-01 13:43:06 -08:00
|
|
|
# depaware (via x/tools/go/packages) shells back to "go", so make sure the "go"
|
|
|
|
# it finds in its $$PATH is the right one.
|
|
|
|
PATH="$$(./tool/go env GOROOT)/bin:$$PATH" ./tool/go run github.com/tailscale/depaware --update \
|
2022-08-05 11:12:35 -07:00
|
|
|
tailscale.com/cmd/tailscaled \
|
|
|
|
tailscale.com/cmd/tailscale \
|
|
|
|
tailscale.com/cmd/derper
|
2020-09-09 12:17:44 -07:00
|
|
|
|
2023-02-16 14:35:54 -08:00
|
|
|
depaware: ## Run depaware checks
|
2023-02-01 13:43:06 -08:00
|
|
|
# depaware (via x/tools/go/packages) shells back to "go", so make sure the "go"
|
|
|
|
# it finds in its $$PATH is the right one.
|
|
|
|
PATH="$$(./tool/go env GOROOT)/bin:$$PATH" ./tool/go run github.com/tailscale/depaware --check \
|
2022-08-05 11:12:35 -07:00
|
|
|
tailscale.com/cmd/tailscaled \
|
|
|
|
tailscale.com/cmd/tailscale \
|
|
|
|
tailscale.com/cmd/derper
|
2020-09-09 12:17:44 -07:00
|
|
|
|
2023-02-16 14:35:54 -08:00
|
|
|
buildwindows: ## Build tailscale CLI for windows/amd64
|
2022-03-18 09:58:20 -07:00
|
|
|
GOOS=windows GOARCH=amd64 ./tool/go install tailscale.com/cmd/tailscale tailscale.com/cmd/tailscaled
|
2021-02-27 21:42:34 -08:00
|
|
|
|
2023-02-16 14:35:54 -08:00
|
|
|
build386: ## Build tailscale CLI for linux/386
|
2022-03-18 09:58:20 -07:00
|
|
|
GOOS=linux GOARCH=386 ./tool/go install tailscale.com/cmd/tailscale tailscale.com/cmd/tailscaled
|
2021-03-01 11:19:20 -08:00
|
|
|
|
2023-02-16 14:35:54 -08:00
|
|
|
buildlinuxarm: ## Build tailscale CLI for linux/arm
|
2022-03-18 09:58:20 -07:00
|
|
|
GOOS=linux GOARCH=arm ./tool/go install tailscale.com/cmd/tailscale tailscale.com/cmd/tailscaled
|
2021-08-18 15:36:04 -07:00
|
|
|
|
2023-02-16 14:35:54 -08:00
|
|
|
buildwasm: ## Build tailscale CLI for js/wasm
|
2022-08-15 07:03:29 -07:00
|
|
|
GOOS=js GOARCH=wasm ./tool/go install ./cmd/tsconnect/wasm ./cmd/tailscale/cli
|
|
|
|
|
2023-08-24 15:02:42 -07:00
|
|
|
buildplan9:
|
|
|
|
GOOS=plan9 GOARCH=amd64 ./tool/go install ./cmd/tailscale ./cmd/tailscaled
|
|
|
|
|
2023-02-16 14:35:54 -08:00
|
|
|
buildlinuxloong64: ## Build tailscale CLI for linux/loong64
|
2022-12-12 12:16:40 +08:00
|
|
|
GOOS=linux GOARCH=loong64 ./tool/go install tailscale.com/cmd/tailscale tailscale.com/cmd/tailscaled
|
|
|
|
|
2023-02-16 14:35:54 -08:00
|
|
|
buildmultiarchimage: ## Build (and optionally push) multiarch docker image
|
2021-11-21 20:52:19 -08:00
|
|
|
./build_docker.sh
|
2021-10-28 13:51:09 +03:00
|
|
|
|
2023-02-16 14:35:54 -08:00
|
|
|
check: staticcheck vet depaware buildwindows build386 buildlinuxarm buildwasm ## Perform basic checks and compilation tests
|
2020-06-15 11:04:19 -07:00
|
|
|
|
2023-02-16 14:35:54 -08:00
|
|
|
staticcheck: ## Run staticcheck.io checks
|
2022-03-18 09:58:20 -07:00
|
|
|
./tool/go run honnef.co/go/tools/cmd/staticcheck -- $$(./tool/go list ./... | grep -v tempfork)
|
2021-12-06 09:22:21 -08:00
|
|
|
|
2023-02-16 14:35:54 -08:00
|
|
|
spk: ## Build synology package for ${SYNO_ARCH} architecture and ${SYNO_DSM} DSM version
|
2023-05-26 12:42:05 -07:00
|
|
|
./tool/go run ./cmd/dist build synology/dsm${SYNO_DSM}/${SYNO_ARCH}
|
2022-01-21 12:05:48 -08:00
|
|
|
|
2023-02-16 14:35:54 -08:00
|
|
|
spkall: ## Build synology packages for all architectures and DSM versions
|
2023-05-26 12:42:05 -07:00
|
|
|
./tool/go run ./cmd/dist build synology
|
2021-12-06 09:22:21 -08:00
|
|
|
|
2023-02-16 14:35:54 -08:00
|
|
|
pushspk: spk ## Push and install synology package on ${SYNO_HOST} host
|
2022-01-21 12:05:48 -08:00
|
|
|
echo "Pushing SPK to root@${SYNO_HOST} (env var SYNO_HOST) ..."
|
|
|
|
scp tailscale.spk root@${SYNO_HOST}:
|
|
|
|
ssh root@${SYNO_HOST} /usr/syno/bin/synopkg install tailscale.spk
|
2022-10-21 10:12:34 -07:00
|
|
|
|
2023-02-16 14:35:54 -08:00
|
|
|
publishdevimage: ## Build and publish tailscale image to location specified by ${REPO}
|
2022-10-21 10:12:34 -07:00
|
|
|
@test -n "${REPO}" || (echo "REPO=... required; e.g. REPO=ghcr.io/${USER}/tailscale" && exit 1)
|
|
|
|
@test "${REPO}" != "tailscale/tailscale" || (echo "REPO=... must not be tailscale/tailscale" && exit 1)
|
|
|
|
@test "${REPO}" != "ghcr.io/tailscale/tailscale" || (echo "REPO=... must not be ghcr.io/tailscale/tailscale" && exit 1)
|
2022-12-13 09:40:41 -08:00
|
|
|
@test "${REPO}" != "tailscale/k8s-operator" || (echo "REPO=... must not be tailscale/k8s-operator" && exit 1)
|
|
|
|
@test "${REPO}" != "ghcr.io/tailscale/k8s-operator" || (echo "REPO=... must not be ghcr.io/tailscale/k8s-operator" && exit 1)
|
2023-09-19 17:51:22 +01:00
|
|
|
TAGS="${TAGS}" REPOS=${REPO} PUSH=true TARGET=client ./build_docker.sh
|
2022-12-13 09:40:41 -08:00
|
|
|
|
2023-02-16 14:35:54 -08:00
|
|
|
publishdevoperator: ## Build and publish k8s-operator image to location specified by ${REPO}
|
2022-12-13 09:40:41 -08:00
|
|
|
@test -n "${REPO}" || (echo "REPO=... required; e.g. REPO=ghcr.io/${USER}/tailscale" && exit 1)
|
|
|
|
@test "${REPO}" != "tailscale/tailscale" || (echo "REPO=... must not be tailscale/tailscale" && exit 1)
|
|
|
|
@test "${REPO}" != "ghcr.io/tailscale/tailscale" || (echo "REPO=... must not be ghcr.io/tailscale/tailscale" && exit 1)
|
|
|
|
@test "${REPO}" != "tailscale/k8s-operator" || (echo "REPO=... must not be tailscale/k8s-operator" && exit 1)
|
|
|
|
@test "${REPO}" != "ghcr.io/tailscale/k8s-operator" || (echo "REPO=... must not be ghcr.io/tailscale/k8s-operator" && exit 1)
|
2023-09-19 17:51:22 +01:00
|
|
|
TAGS="${TAGS}" REPOS=${REPO} PUSH=true TARGET=operator ./build_docker.sh
|
2023-02-16 14:35:54 -08:00
|
|
|
|
|
|
|
help: ## Show this help
|
|
|
|
@echo "\nSpecify a command. The choices are:\n"
|
|
|
|
@grep -hE '^[0-9a-zA-Z_-]+:.*?## .*$$' ${MAKEFILE_LIST} | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[0;36m%-20s\033[m %s\n", $$1, $$2}'
|
|
|
|
@echo ""
|
|
|
|
.PHONY: help
|
|
|
|
|
|
|
|
.DEFAULT_GOAL := help
|