summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.buildkite/hooks/pre-command9
-rwxr-xr-xtools/installers/containerd.sh3
2 files changed, 10 insertions, 2 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.
diff --git a/tools/installers/containerd.sh b/tools/installers/containerd.sh
index e598bce89..03101427c 100755
--- a/tools/installers/containerd.sh
+++ b/tools/installers/containerd.sh
@@ -36,9 +36,10 @@ install_helper() {
mkdir -p "${GOPATH}"/src/$(dirname "${PACKAGE}") && \
git clone https://"${PACKAGE}" "${GOPATH}"/src/"${PACKAGE}"
- # Checkout and build the repository.
+ # Checkout and build the repository. We use a pre-GO111MODULE containerd.
(cd "${GOPATH}"/src/"${PACKAGE}" && \
git checkout "${TAG}" && \
+ export GO111MODULE=off && \
make && \
make install)
}