Skip to content

Commit

Permalink
only add awk in fedora42
Browse files Browse the repository at this point in the history
  • Loading branch information
job committed Feb 7, 2025
1 parent 282378e commit f53fbba
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/images/centos.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion .github/images/fedora/fedora:42.Dockerfile

This file was deleted.

17 changes: 17 additions & 0 deletions .github/images/fedora/fedora:42.Dockerfile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit f53fbba

Please sign in to comment.