Skip to content

Commit ba20a3a

Browse files
tusharbana-ansyspre-commit-ci[bot]RobPasMue
authored
fedora build fix, revert to fedora:40 (#390)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Roberto Pastor Muela <[email protected]>
1 parent e91dc0b commit ba20a3a

File tree

1 file changed

+17
-10
lines changed

1 file changed

+17
-10
lines changed

.github/workflows/ci_cd.yml

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)