Skip to content

Commit 5ad30ca

Browse files
kevinGCgvisor-bot
authored andcommitted
Automated rollback of changelist 385029528
PiperOrigin-RevId: 385200993
1 parent 628d7d3 commit 5ad30ca

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

.buildkite/hooks/pre-command

+1-8
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,9 @@ function install_pkgs() {
88
done
99
}
1010
install_pkgs make "linux-headers-$(uname -r)" linux-libc-dev \
11-
graphviz jq curl binutils gnupg gnupg-agent gcc \
11+
graphviz jq curl binutils gnupg gnupg-agent golang-go \
1212
apt-transport-https ca-certificates software-properties-common
1313

14-
# Install Go 1.16, as only 1.13 is available via apt.
15-
declare -r go_archive=go1.16.6.linux-amd64.tar.gz
16-
wget "https://golang.org/dl/${go_archive}"
17-
sudo tar -xzf "${go_archive}" -C /usr/local
18-
sudo ln -s /usr/local/go/bin/go /usr/bin/go
19-
rm "${go_archive}"
20-
2114
# Setup for parallelization with PARTITION and TOTAL_PARTITIONS.
2215
export PARTITION=${BUILDKITE_PARALLEL_JOB:-0}
2316
PARTITION=$((${PARTITION}+1)) # 1-indexed, but PARALLEL_JOB is 0-indexed.

tools/installers/containerd.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,9 @@ install_helper() {
3636
mkdir -p "${GOPATH}"/src/$(dirname "${PACKAGE}") && \
3737
git clone https://"${PACKAGE}" "${GOPATH}"/src/"${PACKAGE}"
3838

39-
# Checkout and build the repository. We use a pre-GO111MODULE containerd.
39+
# Checkout and build the repository.
4040
(cd "${GOPATH}"/src/"${PACKAGE}" && \
4141
git checkout "${TAG}" && \
42-
export GO111MODULE=off && \
4342
make && \
4443
make install)
4544
}

0 commit comments

Comments
 (0)