From 335ddd58766f26970dacd7887df7573a1f430ffb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Wed, 29 Jun 2022 19:05:11 +0200 Subject: [PATCH] packaging: Do not unset env vars needed for CC MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SKOPEO, UMOCI, and AA_KBC have been unset so far as we have not been generating rootfs images that would be used for CC as part of our workflow. Now, as we're targetting the first release of the operator with the CCv0 branch, let's stop unsetting those and start taking advantage of our tools to help us building a CC capable image. Signed-off-by: Fabiano FidĂȘncio --- tools/packaging/guest-image/build_image.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/packaging/guest-image/build_image.sh b/tools/packaging/guest-image/build_image.sh index 551be25eb..c3133c366 100755 --- a/tools/packaging/guest-image/build_image.sh +++ b/tools/packaging/guest-image/build_image.sh @@ -48,10 +48,6 @@ build_image() { info "Build image" info "image os: $img_distro" info "image os version: $img_os_version" - # CCv0 on image is currently unsupported, do not pass - unset SKOPEO - unset UMOCI - unset AA_KBC sudo -E PATH="${PATH}" make image \ DISTRO="${img_distro}" \ DEBUG="${DEBUG:-}" \