From f53fbba8b39ac4ea9dde8225c19384bcb346401b Mon Sep 17 00:00:00 2001 From: Job Snijders Date: Fri, 7 Feb 2025 15:41:31 +0000 Subject: [PATCH] only add awk in fedora42 --- .github/images/centos.Dockerfile | 2 +- .github/images/fedora/fedora:42.Dockerfile | 18 +++++++++++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) mode change 120000 => 100644 .github/images/fedora/fedora:42.Dockerfile diff --git a/.github/images/centos.Dockerfile b/.github/images/centos.Dockerfile index 4d65eb7..76d3ad3 100644 --- a/.github/images/centos.Dockerfile +++ b/.github/images/centos.Dockerfile @@ -3,7 +3,7 @@ FROM quay.io/$image # Install dependencies RUN dnf -y update -RUN dnf -y install autoconf automake gcc libtool make diffutils file gzip awk +RUN dnf -y install autoconf automake gcc libtool make diffutils file gzip # Add source code ADD . /src diff --git a/.github/images/fedora/fedora:42.Dockerfile b/.github/images/fedora/fedora:42.Dockerfile deleted file mode 120000 index 50cd910..0000000 --- a/.github/images/fedora/fedora:42.Dockerfile +++ /dev/null @@ -1 +0,0 @@ -../centos.Dockerfile \ No newline at end of file diff --git a/.github/images/fedora/fedora:42.Dockerfile b/.github/images/fedora/fedora:42.Dockerfile new file mode 100644 index 0000000..4d65eb7 --- /dev/null +++ b/.github/images/fedora/fedora:42.Dockerfile @@ -0,0 +1,17 @@ +ARG image=centos/centos:latest +FROM quay.io/$image + +# Install dependencies +RUN dnf -y update +RUN dnf -y install autoconf automake gcc libtool make diffutils file gzip awk + +# Add source code +ADD . /src +WORKDIR /src + +# Run steps +RUN ./bootstrap +RUN ./configure +RUN make +RUN make check +RUN make distcheck