diff options
author | Kevin Krakauer <krakauer@google.com> | 2021-07-15 16:06:18 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-07-15 16:09:04 -0700 |
commit | 6415efa514db436e33375f67f38c9f783491b692 (patch) | |
tree | fc235fee247aec62ceedc5d525de808b35db6b71 /.buildkite | |
parent | cd45d7b6c893aa763cdc3ef2f4ac86444b622927 (diff) |
buildkite: bump Go version to 1.16
We're currently on 1.13, which can cause build issues with code targeting later
versions.
PiperOrigin-RevId: 385029528
Diffstat (limited to '.buildkite')
-rw-r--r-- | .buildkite/hooks/pre-command | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.buildkite/hooks/pre-command b/.buildkite/hooks/pre-command index fb2b1892d..b6d1ef270 100644 --- a/.buildkite/hooks/pre-command +++ b/.buildkite/hooks/pre-command @@ -8,9 +8,16 @@ function install_pkgs() { done } install_pkgs make "linux-headers-$(uname -r)" linux-libc-dev \ - graphviz jq curl binutils gnupg gnupg-agent golang-go \ + graphviz jq curl binutils gnupg gnupg-agent gcc \ apt-transport-https ca-certificates software-properties-common +# Install Go 1.16, as only 1.13 is available via apt. +declare -r go_archive=go1.16.6.linux-amd64.tar.gz +wget "https://golang.org/dl/${go_archive}" +sudo tar -xzf "${go_archive}" -C /usr/local +sudo ln -s /usr/local/go/bin/go /usr/bin/go +rm "${go_archive}" + # Setup for parallelization with PARTITION and TOTAL_PARTITIONS. export PARTITION=${BUILDKITE_PARALLEL_JOB:-0} PARTITION=$((${PARTITION}+1)) # 1-indexed, but PARALLEL_JOB is 0-indexed. |