From 6bd5b40bcd87ebf9b03e0096c580378b9d0bffc4 Mon Sep 17 00:00:00 2001 From: chantra Date: Wed, 5 Oct 2022 23:26:11 -0700 Subject: [PATCH] ci: install wget package on s390x runners `wget` is installed by default in GH runners. It is used in [`get-linux-source`](https://github.com/libbpf/ci/blob/79c799d6fb31071c139bafa69639501b6b8ab76b/get-linux-source/checkout_latest_kernel.sh#L32) to download source faster than through a git fetch. Signed-off-by: Manu Bretelle --- .../s390x-self-hosted-builder/actions-runner-libbpf.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/rootfs/s390x-self-hosted-builder/actions-runner-libbpf.Dockerfile b/ci/rootfs/s390x-self-hosted-builder/actions-runner-libbpf.Dockerfile index f797859..5b062be 100644 --- a/ci/rootfs/s390x-self-hosted-builder/actions-runner-libbpf.Dockerfile +++ b/ci/rootfs/s390x-self-hosted-builder/actions-runner-libbpf.Dockerfile @@ -16,6 +16,7 @@ RUN apt-get update && apt-get -y install \ cmake \ cpu-checker \ curl \ + wget \ flex \ git \ jq \