Skip to content

Commit

Permalink
CI: Upgrade to Fedora 41 and thus dnf5, fix options order for dnf5, a…
Browse files Browse the repository at this point in the history
…nd remove unnecessary container pulls.
  • Loading branch information
rhusar committed Jan 9, 2025
1 parent 83ae65b commit de4831f
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,11 @@ jobs:
run: |
sudo apt update
sudo apt-get -y install podman
podman pull fedora:39
- name: Create container and build
run: |
{
echo 'FROM fedora:40'
echo 'RUN dnf install cmake httpd-devel ${{ matrix.compiler }} -y'
echo 'RUN dnf groupinstall "C Development Tools and Libraries" -y'
echo 'FROM fedora:41'
echo 'RUN dnf install --assumeyes @c-development cmake httpd-devel ${{ matrix.compiler }}'
echo 'RUN dnf clean all'
echo 'COPY mod_proxy_cluster mod_proxy_cluster'
echo 'WORKDIR /mod_proxy_cluster/native'
Expand All @@ -72,13 +70,11 @@ jobs:
run: |
sudo apt update
sudo apt-get -y install podman
podman pull fedora:39
- name: Create container and build
run: |
{
echo 'FROM fedora:40'
echo 'RUN dnf install httpd-devel redhat-rpm-config -y'
echo 'RUN dnf groupinstall "C Development Tools and Libraries" -y'
echo 'FROM fedora:41'
echo 'RUN dnf install --assumeyes @c-development httpd-devel redhat-rpm-config'
echo 'RUN dnf clean all'
echo 'COPY mod_proxy_cluster mod_proxy_cluster'
echo 'WORKDIR /mod_proxy_cluster/native'
Expand Down

0 comments on commit de4831f

Please sign in to comment.