android: update docker image names for go 1.23

updates #cleanup

We need to regenerate the docker images, we'll
denote the new ones with a go1.23 extension.

This also sets the TS_USE_TOOLCHAIN flag so
we're using the corp toolchain which fixes some
versioning script issues.

Signed-off-by: Jonathan Nobels <jonathan@tailscale.com>
pull/490/head
Jonathan Nobels 1 year ago
parent fb8a4f51dc
commit 161457b99b

@ -8,7 +8,8 @@
# The docker image to use for the build environment. Changing this
# will force a rebuild of the docker image. If there is an existing image
# with this name, it will be used.
DOCKER_IMAGE=tailscale-android-build-amd64
DOCKER_IMAGE=tailscale-android-build-amd64-go1.23
export TS_USE_TOOLCHAIN=1
DEBUG_APK=tailscale-debug.apk
RELEASE_AAB=tailscale-release.aab

@ -1,8 +1,6 @@
module github.com/tailscale/tailscale-android
go 1.23
toolchain go1.23.0
go 1.23.0
require (
github.com/tailscale/wireguard-go v0.0.0-20240731203015-71393c576b98

@ -9,6 +9,9 @@
set -euo pipefail
# use the go toolchain from the tailscale.com
export TS_USE_TOOLCHAIN=1
go_list=$(go list -m tailscale.com)
# go list outputs `tailscale.com <version>`. Extract the version.
mod_version=${go_list#tailscale.com}

Loading…
Cancel
Save