From a8c7be7892fc86296da598ac8bffd490ed7f35e2 Mon Sep 17 00:00:00 2001 From: Ihor Solodrai Date: Thu, 23 Oct 2025 11:31:04 -0700 Subject: [PATCH] run-vmtest: add binutils and make to installed dependencies It turns out run-vmtest has a couple of dependencies that were not installed by it. A change in s390x runner image for BPF CI that removed installation of build dependencies [1] (we don't build kernels on s390x directly), revealed this [2]. Fix this by explicitly installing necessary packages. [1] https://github.com/kernel-patches/runner/commit/a02aad5492f0006302ddfdd742d64e13b342f823 [2] https://github.com/kernel-patches/bpf/actions/runs/18749161085/job/53516267195 Signed-off-by: Ihor Solodrai --- run-vmtest/install-dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-vmtest/install-dependencies.sh b/run-vmtest/install-dependencies.sh index 1106d72..6359c88 100755 --- a/run-vmtest/install-dependencies.sh +++ b/run-vmtest/install-dependencies.sh @@ -9,6 +9,6 @@ sudo chmod 755 /usr/bin/vmtest sudo apt-get update -y sudo -E apt-get install --no-install-recommends -y \ - cpu-checker ethtool gawk iproute2 iptables iputils-ping keyutils libpcap-dev + binutils cpu-checker ethtool gawk iproute2 iptables iputils-ping keyutils libpcap-dev make sudo -E apt-get install --no-install-recommends -y \ qemu-guest-agent qemu-kvm qemu-system-arm qemu-system-s390x qemu-system-x86 qemu-utils