From add921c06349f985e49a1c5b179e9801d69b70ac Mon Sep 17 00:00:00 2001 From: Wei Shi Date: Wed, 7 Feb 2024 16:40:51 +0800 Subject: [PATCH] tmt: comment out the cmd which access to quay.io It's a know issue and already has workaround https://github.com/containers/podman/issues/16973 Comment out the line to not let it block the CI pipeline, since this part is just copied from a demo template. Signed-off-by: Wei Shi --- plans/main.fmf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plans/main.fmf b/plans/main.fmf index 39d406f..6b92d5f 100644 --- a/plans/main.fmf +++ b/plans/main.fmf @@ -26,5 +26,8 @@ execute: # Then, perform some check for IMAGE in $IMAGES; do - podman run $IMAGE cat /etc/os-release + echo $IMAGE + # Comment out this line due to the quay.io flakes + # https://github.com/containers/podman/issues/16973 + # podman run $IMAGE cat /etc/os-release done