2023-06-23 19:10:24 +00:00
|
|
|
#!/usr/bin/env bash
|
2023-02-22 00:07:33 +00:00
|
|
|
# Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
#
|
|
|
|
# gocross-wrapper.sh is a wrapper that can be aliased to 'go', which
|
|
|
|
# transparently builds gocross using a "bootstrap" Go toolchain, and
|
|
|
|
# then invokes gocross.
|
|
|
|
|
2023-06-23 19:10:24 +00:00
|
|
|
set -euo pipefail
|
2023-02-22 00:07:33 +00:00
|
|
|
|
2023-11-20 20:22:57 +00:00
|
|
|
if [[ "${CI:-}" == "true" && "${NOBASHDEBUG:-}" != "true" ]]; then
|
2023-02-22 00:07:33 +00:00
|
|
|
set -x
|
|
|
|
fi
|
|
|
|
|
2023-02-24 02:06:18 +00:00
|
|
|
# Locate a bootstrap toolchain and (re)build gocross if necessary. We run all of
|
|
|
|
# this in a subshell because posix shell semantics make it very easy to
|
|
|
|
# accidentally mutate the input environment that will get passed to gocross at
|
|
|
|
# the bottom of this script.
|
|
|
|
(
|
2023-06-23 19:10:24 +00:00
|
|
|
repo_root="${BASH_SOURCE%/*}/../.."
|
2023-02-22 00:07:33 +00:00
|
|
|
|
2023-03-20 20:50:41 +00:00
|
|
|
# Figuring out if gocross needs a rebuild, as well as the rebuild itself, need
|
|
|
|
# to happen with CWD inside this repo. Since we're in a subshell entirely
|
|
|
|
# dedicated to wrangling gocross and toolchains, cd over now before doing
|
|
|
|
# anything further so that the rest of this logic works the same if gocross is
|
|
|
|
# being invoked from somewhere else.
|
|
|
|
cd "$repo_root"
|
|
|
|
|
2024-09-17 20:27:05 +00:00
|
|
|
# toolchain, set below, is the root of the Go toolchain we'll use to build
|
|
|
|
# gocross.
|
|
|
|
#
|
|
|
|
# It's set to either an explicit Go toolchain directory (if go.toolchain.rev has
|
|
|
|
# a value with a leading slash, for testing new toolchains), or otherwise in the
|
|
|
|
# common case it'll be "$HOME/.cache/tsgo/GITHASH" where GITHASH is the contents
|
|
|
|
# of the go.toolchain.rev file and the git commit of the
|
|
|
|
# https://github.com/tailscale/go release artifact to download.
|
|
|
|
toolchain=""
|
2023-02-22 00:07:33 +00:00
|
|
|
|
2024-09-17 20:27:05 +00:00
|
|
|
read -r REV <go.toolchain.rev
|
|
|
|
case "$REV" in
|
|
|
|
/*)
|
|
|
|
toolchain="$REV"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
toolchain="$HOME/.cache/tsgo/$REV"
|
|
|
|
if [[ ! -f "$toolchain.extracted" ]]; then
|
|
|
|
mkdir -p "$HOME/.cache/tsgo"
|
2023-02-27 22:08:28 +00:00
|
|
|
rm -rf "$toolchain" "$toolchain.extracted"
|
2023-02-22 00:07:33 +00:00
|
|
|
|
2024-09-17 20:27:05 +00:00
|
|
|
echo "# Downloading Go toolchain $REV" >&2
|
2023-02-22 00:07:33 +00:00
|
|
|
|
2023-02-24 05:34:16 +00:00
|
|
|
# This works for linux and darwin, which is sufficient
|
|
|
|
# (we do not build tailscale-go for other targets).
|
|
|
|
HOST_OS=$(uname -s | tr A-Z a-z)
|
|
|
|
HOST_ARCH="$(uname -m)"
|
2023-06-23 19:10:24 +00:00
|
|
|
if [[ "$HOST_ARCH" == "aarch64" ]]; then
|
2023-02-24 05:34:16 +00:00
|
|
|
# Go uses the name "arm64".
|
|
|
|
HOST_ARCH="arm64"
|
2023-06-23 19:10:24 +00:00
|
|
|
elif [[ "$HOST_ARCH" == "x86_64" ]]; then
|
2023-02-24 05:34:16 +00:00
|
|
|
# Go uses the name "amd64".
|
|
|
|
HOST_ARCH="amd64"
|
|
|
|
fi
|
|
|
|
curl -f -L -o "$toolchain.tar.gz" "https://github.com/tailscale/go/releases/download/build-${REV}/${HOST_OS}-${HOST_ARCH}.tar.gz"
|
|
|
|
mkdir -p "$toolchain"
|
|
|
|
(cd "$toolchain" && tar --strip-components=1 -xf "$toolchain.tar.gz")
|
|
|
|
echo "$REV" >"$toolchain.extracted"
|
2023-03-15 18:42:55 +00:00
|
|
|
rm -f "$toolchain.tar.gz"
|
2024-09-17 20:27:05 +00:00
|
|
|
|
|
|
|
# Do some cleanup of old toolchains while we're here.
|
2024-10-07 15:01:42 +00:00
|
|
|
for hash in $(find "$HOME/.cache/tsgo" -maxdepth 1 -type f -name '*.extracted' -mtime 90 -exec basename {} \; | sed 's/.extracted$//'); do
|
2024-09-17 20:27:05 +00:00
|
|
|
echo "# Cleaning up old Go toolchain $hash" >&2
|
|
|
|
rm -rf "$HOME/.cache/tsgo/$hash"
|
|
|
|
rm -rf "$HOME/.cache/tsgo/$hash.extracted"
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [[ -d "$toolchain" ]]; then
|
|
|
|
# A toolchain exists, but is it recent enough to compile gocross? If not,
|
|
|
|
# wipe it out so that the next if block fetches a usable one.
|
|
|
|
want_go_minor="$(grep -E '^go ' "go.mod" | cut -f2 -d'.')"
|
|
|
|
have_go_minor=""
|
|
|
|
if [[ -f "$toolchain/VERSION" ]]; then
|
|
|
|
have_go_minor="$(head -1 "$toolchain/VERSION" | cut -f2 -d'.')"
|
|
|
|
fi
|
|
|
|
# Shortly before stable releases, we run release candidate
|
|
|
|
# toolchains, which have a non-numeric suffix on the version
|
|
|
|
# number. Remove the rc qualifier, we just care about the minor
|
|
|
|
# version.
|
|
|
|
have_go_minor="${have_go_minor%rc*}"
|
|
|
|
if [[ -z "$have_go_minor" || "$have_go_minor" -lt "$want_go_minor" ]]; then
|
|
|
|
rm -rf "$toolchain" "$toolchain.extracted"
|
|
|
|
fi
|
2023-02-22 00:07:33 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Binaries run with `gocross run` can reinvoke gocross, resulting in a
|
|
|
|
# potentially fancy build that invokes external linkers, might be
|
|
|
|
# cross-building for other targets, and so forth. In one hilarious
|
|
|
|
# case, cmd/cloner invokes go with GO111MODULE=off at some stage.
|
|
|
|
#
|
|
|
|
# Anyway, build gocross in a stripped down universe.
|
2024-07-01 20:30:58 +00:00
|
|
|
gocross_path="./gocross"
|
2023-02-22 00:07:33 +00:00
|
|
|
gocross_ok=0
|
2023-03-21 04:22:06 +00:00
|
|
|
wantver="$(git rev-parse HEAD)"
|
2023-06-23 19:10:24 +00:00
|
|
|
if [[ -x "$gocross_path" ]]; then
|
2023-02-22 00:07:33 +00:00
|
|
|
gotver="$($gocross_path gocross-version 2>/dev/null || echo '')"
|
2023-06-23 19:10:24 +00:00
|
|
|
if [[ "$gotver" == "$wantver" ]]; then
|
2023-02-22 00:07:33 +00:00
|
|
|
gocross_ok=1
|
|
|
|
fi
|
|
|
|
fi
|
2023-06-23 19:10:24 +00:00
|
|
|
if [[ "$gocross_ok" == "0" ]]; then
|
2023-02-24 02:06:18 +00:00
|
|
|
unset GOOS
|
|
|
|
unset GOARCH
|
|
|
|
unset GO111MODULE
|
|
|
|
unset GOROOT
|
|
|
|
export CGO_ENABLED=0
|
2023-03-21 04:22:06 +00:00
|
|
|
"$toolchain/bin/go" build -o "$gocross_path" -ldflags "-X tailscale.com/version.gitCommitStamp=$wantver" tailscale.com/tool/gocross
|
2023-02-22 00:07:33 +00:00
|
|
|
fi
|
2023-02-24 02:06:18 +00:00
|
|
|
) # End of the subshell execution.
|
|
|
|
|
2023-06-23 19:10:24 +00:00
|
|
|
exec "${BASH_SOURCE%/*}/../../gocross" "$@"
|