From 3dbbbc88ac6b107b4adcdb068c6eb5743401db0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Wed, 20 Sep 2023 18:49:27 +0200 Subject: [PATCH] cache: Fix rootfs-image-tdx and rootfs-initrd-sev cached artefacts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The name of the tarballs changed on main, but we didn't follow up changing this on the CCv0 branch. :-/ Signed-off-by: Fabiano FidĂȘncio --- tools/packaging/static-build/cache_components.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/packaging/static-build/cache_components.sh b/tools/packaging/static-build/cache_components.sh index 40c35e6a42..fdab8aac5b 100755 --- a/tools/packaging/static-build/cache_components.sh +++ b/tools/packaging/static-build/cache_components.sh @@ -110,7 +110,7 @@ cache_rootfs_artifacts() { local root_hash_tdx="" if [ -n "${TEE}" ]; then if [ "${TEE}" == "tdx" ]; then - rootfs_tarball_name="kata-static-cc-tdx-rootfs-image.tar.xz" + rootfs_tarball_name="kata-static-rootfs-image-tdx.tar.xz" aa_kbc="cc_kbc_tdx" image_type="image" root_hash_vanilla="" @@ -118,7 +118,7 @@ cache_rootfs_artifacts() { fi if [ "${TEE}" == "sev" ]; then root_hash_vanilla="" - rootfs_tarball_name="kata-static-cc-sev-rootfs-initrd.tar.xz" + rootfs_tarball_name="kata-static-rootfs-initrd-sev.tar.xz" aa_kbc="online_sev_kbc" image_type="initrd" initramfs_last_commit="$(get_initramfs_image_name)"