Skip to content

Commit a68ebd0

Browse files
committed
Use upstream runc with RISC-V support
Signed-off-by: Antony Chazapis <[email protected]>
1 parent eb4d1d3 commit a68ebd0

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ replace (
1717
github.com/googleapis/gax-go/v2 => github.com/googleapis/gax-go/v2 v2.1.1
1818
github.com/juju/errors => github.com/k3s-io/nocode v0.0.0-20200630202308-cb097102c09f
1919
github.com/kubernetes-sigs/cri-tools => github.com/k3s-io/cri-tools v1.26.0-rc.0-k3s1
20-
github.com/opencontainers/runc => github.com/opencontainers/runc v1.1.7
20+
github.com/opencontainers/runc => github.com/opencontainers/runc v1.1.8
2121
github.com/opencontainers/runtime-spec => github.com/opencontainers/runtime-spec v1.0.3-0.20220909204839-494a5a6aca78
2222
github.com/opencontainers/selinux => github.com/opencontainers/selinux v1.10.1
2323
github.com/rancher/wrangler => github.com/rancher/wrangler v1.1.1-0.20230425173236-39a4707f0689

scripts/download

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,7 @@ mkdir -p ${DATA_DIR}
2222

2323
curl --compressed -sfL https://github.com/k3s-io/k3s-root/releases/download/${VERSION_ROOT}/k3s-root-${ARCH}.tar | tar xf -
2424

25-
if [ ${ARCH} = riscv64 ]; then
26-
git clone --single-branch --branch=release-1.1 --depth=1 https://github.com/opencontainers/runc ${RUNC_DIR}
27-
else
28-
git clone --single-branch --branch=${VERSION_RUNC} --depth=1 https://github.com/opencontainers/runc ${RUNC_DIR}
29-
fi
25+
git clone --single-branch --branch=${VERSION_RUNC} --depth=1 https://github.com/opencontainers/runc ${RUNC_DIR}
3026

3127
git clone --single-branch --branch=${VERSION_CONTAINERD} --depth=1 https://github.com/k3s-io/containerd ${CONTAINERD_DIR}
3228

0 commit comments

Comments
 (0)