From af61219a15db476bf72e18f3bbbc1f72d73b1dde Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Sat, 1 Mar 2025 15:21:40 -0800 Subject: [PATCH] Makefile: add temporary plan9 rule Updates #5794 Change-Id: I89113223560ae5734fca9f460e6a6f77d5c82135 --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 30ac5327a..d718a00b4 100644 --- a/Makefile +++ b/Makefile @@ -110,6 +110,10 @@ publishdevnameserver: ## Build and publish k8s-nameserver image to location spec @test "${REPO}" != "ghcr.io/tailscale/k8s-nameserver" || (echo "REPO=... must not be ghcr.io/tailscale/k8s-nameserver" && exit 1) TAGS="${TAGS}" REPOS=${REPO} PLATFORM=${PLATFORM} PUSH=true TARGET=k8s-nameserver ./build_docker.sh +plan9: + GOOS=plan9 GOARCH=386 go build -o ${HOME}/hack/rsc-plan9/td ./cmd/tailscaled + GOOS=plan9 GOARCH=386 go build -o ${HOME}/hack/rsc-plan9/ts ./cmd/tailscale + .PHONY: sshintegrationtest sshintegrationtest: ## Run the SSH integration tests in various Docker containers @GOOS=linux GOARCH=amd64 ./tool/go test -tags integrationtest -c ./ssh/tailssh -o ssh/tailssh/testcontainers/tailssh.test && \