[6.0] 471962b1c circleci: Install awk on Fedora

Dag Haavi Finstad daghf at varnish-software.com
Tue May 13 12:07:05 UTC 2025


commit 471962b1c5ac82ff5f2a31ff571766f85bdd62c8
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.
    
    Conflicts:
            .circleci/config.yml

diff --git a/.circleci/Dockerfile b/.circleci/Dockerfile
index c8cd03af5..0f8f9d220 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 dd5524d9c..fe06d4fba 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -35,6 +35,7 @@ jobs:
           name: Install deps
           command: |
             dnf -y install \
+                awk \
                 automake \
                 jemalloc-devel \
                 git \
@@ -243,6 +244,7 @@ jobs:
                         ;;
                 esac
                 dnf -y install \
+                    awk \
                     cpio \
                     automake \
                     git \


More information about the varnish-commit mailing list