[7.6] 8927e63c7 circleci: Install awk on Fedora
Walid Boudebouda
walid.boudebouda at gmail.com
Mon May 12 15:29:05 UTC 2025
commit 8927e63c7bd97d6fcb69e1a598a7b4860bceef02
Author: Guillaume Quintard <guillaume.quintard at varnish-software.com>
Date: Wed Apr 16 01:20:14 2025 -0700
circleci: Install awk on Fedora
It's no longer present since the fedora:42 base image.
diff --git a/.circleci/Dockerfile b/.circleci/Dockerfile
index 9ef231e0f..f2196d253 100644
--- a/.circleci/Dockerfile
+++ b/.circleci/Dockerfile
@@ -2,6 +2,7 @@ FROM fedora-latest
RUN set -e; \
dnf -y install \
+ awk \
automake \
git \
jemalloc-devel \
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 38bffa161..80d2aeae0 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -36,6 +36,7 @@ jobs:
name: Install deps
command: |
dnf -y install \
+ awk \
automake \
jemalloc-devel \
git \
@@ -245,6 +246,7 @@ jobs:
;;
fedora:*)
dnf -y group install development-tools
+ dnf -y install awk
;;
esac
dnf -y install \
More information about the varnish-commit
mailing list