[master] 92570c961 circleci: Install awk on Fedora
Dridi Boukelmoune
dridi.boukelmoune at gmail.com
Mon Apr 28 18:19:04 UTC 2025
commit 92570c961a5742f9aa54437c4c88fb4e9a87a45a
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 b1491127f..ce11e78cc 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