From 20f31566c828b75bed5308c301bf2e4f6354c290 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Thu, 17 Apr 2025 14:04:42 +0200 Subject: [PATCH] ci: install awk in Fedora test container-image Fedora 42 has been released, and its container-image does not seem to include `awk` anymore. `awk` is used during the preparation phase of the golangci-lint test, and possibly others. By installing `awk` in the test container-image, all scripts seem to work well with the Fedora 42 container-image. Signed-off-by: Niels de Vos --- scripts/Dockerfile.test | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/Dockerfile.test b/scripts/Dockerfile.test index f2e7748d3..835393fd9 100644 --- a/scripts/Dockerfile.test +++ b/scripts/Dockerfile.test @@ -33,6 +33,7 @@ RUN source /build.env \ make \ gcc \ findutils \ + awk \ librados-devel \ libcephfs-devel \ librbd-devel \