From b64673196ab289e4e0eee288b0e9ebd07dff88b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Mon, 20 Apr 2026 14:52:57 +0200 Subject: [PATCH] ci: cache: qemu: Take configure-hypervisor.sh into account MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The script is used to change the options used to build QEMU and **must** be taken into consideration in case something changes, otherwise the QEMU used by the CI would be the old cached one (ignoring any flag newly added). Signed-off-by: Fabiano FidĂȘncio --- tools/packaging/scripts/lib.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/packaging/scripts/lib.sh b/tools/packaging/scripts/lib.sh index 1c8082537c..45a62afbb5 100644 --- a/tools/packaging/scripts/lib.sh +++ b/tools/packaging/scripts/lib.sh @@ -172,7 +172,8 @@ calc_qemu_files_sha256sum() { local files="${repo_root_dir}/tools/packaging/qemu \ ${repo_root_dir}/tools/packaging/static-build/qemu.blacklist \ ${repo_root_dir}/tools/packaging/static-build/scripts \ - ${repo_root_dir}/tools/packaging/static-build/qemu" + ${repo_root_dir}/tools/packaging/static-build/qemu \ + ${repo_root_dir}/tools/packaging/scripts/configure-hypervisor.sh" sha256sum_from_files "$files" }