summaryrefslogtreecommitdiffhomepage
path: root/.buildkite
diff options
context:
space:
mode:
authorKevin Krakauer <krakauer@google.com>2021-07-16 12:31:05 -0700
committergVisor bot <gvisor-bot@google.com>2021-07-16 12:33:24 -0700
commit5ad30cac2ede4eda318c78264e3b9810035ef27d (patch)
tree53882629b6972153a5cb9846094caebd21568750 /.buildkite
parent628d7d3a4662a14625895df6ff1ca7a9dbf3a5d7 (diff)
Automated rollback of changelist 385029528
PiperOrigin-RevId: 385200993
Diffstat (limited to '.buildkite')
-rw-r--r--.buildkite/hooks/pre-command9
1 files changed, 1 insertions, 8 deletions
diff --git a/.buildkite/hooks/pre-command b/.buildkite/hooks/pre-command
index b6d1ef270..fb2b1892d 100644
--- a/.buildkite/hooks/pre-command
+++ b/.buildkite/hooks/pre-command
@@ -8,16 +8,9 @@ function install_pkgs() {
done
}
install_pkgs make "linux-headers-$(uname -r)" linux-libc-dev \
- graphviz jq curl binutils gnupg gnupg-agent gcc \
+ graphviz jq curl binutils gnupg gnupg-agent golang-go \
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.