diff options
-rw-r--r-- | .buildkite/hooks/pre-command | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/.buildkite/hooks/pre-command b/.buildkite/hooks/pre-command index 6f197436c..9eb6d38f4 100644 --- a/.buildkite/hooks/pre-command +++ b/.buildkite/hooks/pre-command @@ -11,14 +11,6 @@ install_pkgs make "linux-headers-$(uname -r)" linux-libc-dev \ graphviz jq curl binutils gnupg gnupg-agent gcc pkg-config \ apt-transport-https ca-certificates software-properties-common -# Install Go 1.16, as only 1.13 is available via apt. If it's installed via apt, -# remove it. -sudo apt-get autoremove -y golang-go -declare -r go_archive=go1.16.6.linux-amd64.tar.gz -wget -c "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 - # 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. |