mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 03:25:35 +00:00
88133c361e
The goal here is to 1. make it so that the number doesn't diverge between the various places we had it defined 2. not define the number in corp, only in oss Signed-off-by: Maisem Ali <maisem@tailscale.com>
52 lines
1.3 KiB
Go
52 lines
1.3 KiB
Go
// Copyright (c) 2021 Tailscale Inc & AUTHORS All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// The printdep command is a build system tool for printing out information
|
|
// about dependencies.
|
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"log"
|
|
"runtime"
|
|
"strings"
|
|
|
|
ts "tailscale.com"
|
|
)
|
|
|
|
var (
|
|
goToolchain = flag.Bool("go", false, "print the supported Go toolchain git hash (a github.com/tailscale/go commit)")
|
|
goToolchainURL = flag.Bool("go-url", false, "print the URL to the tarball of the Tailscale Go toolchain")
|
|
alpine = flag.Bool("alpine", false, "print the tag of alpine docker image")
|
|
)
|
|
|
|
func main() {
|
|
flag.Parse()
|
|
if *alpine {
|
|
fmt.Println(strings.TrimSpace(ts.AlpineDockerTag))
|
|
return
|
|
}
|
|
if *goToolchain {
|
|
fmt.Println(strings.TrimSpace(ts.GoToolchainRev))
|
|
}
|
|
if *goToolchainURL {
|
|
var suffix string
|
|
switch runtime.GOARCH {
|
|
case "amd64":
|
|
// None
|
|
case "arm64":
|
|
suffix = "-" + runtime.GOARCH
|
|
default:
|
|
log.Fatalf("unsupported GOARCH %q", runtime.GOARCH)
|
|
}
|
|
switch runtime.GOOS {
|
|
case "linux", "darwin":
|
|
default:
|
|
log.Fatalf("unsupported GOOS %q", runtime.GOOS)
|
|
}
|
|
fmt.Printf("https://github.com/tailscale/go/releases/download/build-%s/%s%s.tar.gz\n", strings.TrimSpace(ts.GoToolchainRev), runtime.GOOS, suffix)
|
|
}
|
|
}
|