We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a3342e commit f9686bdCopy full SHA for f9686bd
Makefile
@@ -9,8 +9,13 @@
9
# will force a rebuild of the docker image. If there is an existing image
10
# with this name, it will be used.
11
#
12
-# The convention here is tailscale-android-build-amd64-<date>
13
-DOCKER_IMAGE=tailscale-android-build-amd64-191124
+# The convention here is tailscale-android-build-amd64-<go.toolchain.rev>
+#
14
+# Read the current Go toolchain revision.
15
+GO_TOOLCHAIN_REV := $(shell cat go.toolchain.rev)
16
+
17
+# Define the Docker image tag using the current revision.
18
+DOCKER_IMAGE := tailscale-android-build-amd64-$(GO_TOOLCHAIN_REV)
19
export TS_USE_TOOLCHAIN=1
20
21
DEBUG_APK=tailscale-debug.apk
0 commit comments