File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 19
19
20
20
# Basic deps
21
21
ARG CONTAINERD_VERSION=v2.0.0-rc.5
22
- ARG RUNC_VERSION=v1.1.15
22
+ ARG RUNC_VERSION=v1.2.0
23
23
ARG CNI_PLUGINS_VERSION=v1.5.1
24
24
25
25
# Extra deps: Build
Original file line number Diff line number Diff line change @@ -28,10 +28,7 @@ readonly root
28
28
# "Blacklisting" here means that any dependency which name is blacklisted will be left untouched, at the version
29
29
# currently pinned in the Dockerfile.
30
30
# This is convenient so that currently broken alpha/beta/RC can be held back temporarily to keep the build green
31
-
32
- # Currently pinned, see:
33
- # - https://github.com/containerd/nerdctl/pull/3153
34
- blacklist=(runc)
31
+ blacklist=()
35
32
36
33
# List all the repositories we depend on to build and run integration tests
37
34
dependencies=(
@@ -219,6 +216,7 @@ canary::build::integration(){
219
216
docker_args=(docker build -t test-integration --target test-integration)
220
217
221
218
for dep in " ${dependencies[@]} " ; do
219
+ local bl=" "
222
220
shortname=" ${dep##*/ } "
223
221
[ " $shortname " != " plugins" ] || shortname=" cni-plugins"
224
222
[ " $shortname " != " fuse-overlayfs-snapshotter" ] || shortname=" containerd-fuse-overlayfs"
You can’t perform that action at this time.
0 commit comments