Revert "install-runc: pin Go to 1.21"

Now that we're on runc v1.1.13, we no longer need to pin the
go version fo runc to go1.21

This reverts commit fef78c1024.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2024-06-13 18:29:47 +02:00
parent 3c097352af
commit cc2cedae06
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C

View File

@ -34,18 +34,11 @@ function install_runc() {
: "${RUNC_REPO:=https://github.com/opencontainers/runc.git}"
TMPROOT=$(mktemp -d)
# runc is incompatible with Go 1.22 on glibc-based distros
# https://github.com/opencontainers/runc/issues/4233
GO121DIR="${TMPROOT}"/go121
mkdir -p "${GO121DIR}"
GOBIN="${GO121DIR}" go install golang.org/dl/go1.21.11@latest
GO121="${GO121DIR}"/go1.21.11
$GO121 download
git clone "${RUNC_REPO}" "${TMPROOT}"/runc
pushd "${TMPROOT}"/runc
git checkout "${RUNC_VERSION}"
make GO=$GO121 BUILDTAGS='seccomp' runc
$SUDO make GO=$GO121 install
make BUILDTAGS='seccomp' runc
$SUDO make install
popd
rm -fR "${TMPROOT}"
}