From 25bc7d161eeb1ad642923cc55f25192441d5c46c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 10 Apr 2023 17:35:57 +0000 Subject: [PATCH 1/2] chore(deps): update dependency containers/automation_images to v20230405 Signed-off-by: Renovate Bot --- .cirrus.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index b71049c161..bde179a35a 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -32,7 +32,7 @@ env: DEBIAN_NAME: "debian-12" # Image identifiers - IMAGE_SUFFIX: "c20230307t192532z-f37f36d12" + IMAGE_SUFFIX: "c20230405t152256z-f37f36d12" # EC2 images FEDORA_AMI: "fedora-aws-${IMAGE_SUFFIX}" FEDORA_AARCH64_AMI: "fedora-podman-aws-arm64-${IMAGE_SUFFIX}" From 11ac0d03e3c9bebe04a6b1fa24c606be8cfb83ee Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Tue, 11 Apr 2023 06:34:43 -0600 Subject: [PATCH 2/2] Debian setup: workaround for runc /dev/char/10:200 bug Debian system tests failing due to unwanted warning: skipping device /dev/char/10:200 for systemd: stat /sys/dev/char/10:200: no such file or directory Let's see if modprobing tun will eliminate the warning. Add loud comments requesting removal once runc bug is fixed. Signed-off-by: Ed Santiago --- contrib/cirrus/setup_environment.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/contrib/cirrus/setup_environment.sh b/contrib/cirrus/setup_environment.sh index 436024ef69..b24566e12c 100755 --- a/contrib/cirrus/setup_environment.sh +++ b/contrib/cirrus/setup_environment.sh @@ -122,7 +122,12 @@ fi # Which distribution are we testing on. case "$OS_RELEASE_ID" in - debian) ;; + debian) + # FIXME 2023-04-11: workaround for runc regression causing failure + # in system tests: "skipping device /dev/char/10:200 for systemd" + # FIXME: please remove this once runc >= 1.2 makes it into debian. + modprobe tun + ;; fedora) if ((CONTAINER==0)); then # All SELinux distros need this for systemd-in-a-container