@@ -237,9 +237,7 @@ jobs:
237237 build-application-linux-non-debian :
238238 strategy :
239239 matrix :
240- # TODO: reactivate...
241- # os: ["quay.io/centos/centos:stream9", "fedora:latest"]
242- os : ["quay.io/centos/centos:stream9"]
240+ os : ["quay.io/centos/centos:stream9", "fedora:40"]
243241 fail-fast : false
244242 name : " Build Application Linux - ${{ matrix.os }}"
245243 runs-on : ubuntu-latest
@@ -251,11 +249,21 @@ jobs:
251249 steps :
252250 - uses : actions/checkout@v4
253251
254- - name : Install CentOS/Fedora Dependencies
255- if : contains(matrix.os, 'centos') || contains(matrix.os, 'fedora')
252+ - name : Update and Install development tools - Fedora
253+ if : contains(matrix.os, 'fedora')
254+ run : |
255+ yum update -y
256+ yum group install development-tools -y
257+
258+ - name : Update and Install development tools - Centos
259+ if : contains(matrix.os, 'centos')
256260 run : |
257261 yum update -y
258262 yum groupinstall "Development Tools" -y
263+
264+ - name : Install CentOS/Fedora Dependencies
265+ if : contains(matrix.os, 'centos') || contains(matrix.os, 'fedora')
266+ run : |
259267 yum install python3 \
260268 python3-pip \
261269 wget \
@@ -461,11 +469,10 @@ jobs:
461469 name : Python-Installer-centos_stream9
462470 path : installer
463471
464- # TODO: reactivate...
465- # - uses: actions/download-artifact@v4
466- # with:
467- # name: Python-Installer-fedora_latest
468- # path: installer
472+ - uses : actions/download-artifact@v4
473+ with :
474+ name : Python-Installer-fedora_latest
475+ path : installer
469476
470477 - name : Display structure of downloaded files
471478 run : ls -R
0 commit comments