From 58874f9c3e147198d63a111fb7c2cc411f12cf88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Thu, 25 Jan 2024 14:10:22 +0100 Subject: [PATCH] packaging: tools: Add the arch to the builder container MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This has been missed during reviews and will become a problem when the tools start to be built in different architectures. Signed-off-by: Fabiano FidĂȘncio --- tools/packaging/scripts/lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/packaging/scripts/lib.sh b/tools/packaging/scripts/lib.sh index 7e8fe05275..f7259b4c5f 100644 --- a/tools/packaging/scripts/lib.sh +++ b/tools/packaging/scripts/lib.sh @@ -207,7 +207,7 @@ get_tools_image_name() { libs_dir="${repo_root_dir}/src/libs" agent_dir="${repo_root_dir}/src/agent" - echo "${BUILDER_REGISTRY}:tools-$(get_last_modification ${tools_dir})-$(get_last_modification ${libs_dir})-$(get_last_modification ${agent_dir})" + echo "${BUILDER_REGISTRY}:tools-$(get_last_modification ${tools_dir})-$(get_last_modification ${libs_dir})-$(get_last_modification ${agent_dir})-$(uname -m)" } get_agent_image_name() {