Skip to content

Commit

Permalink
fedora build fix, revert to fedora:40 (#390)
Browse files Browse the repository at this point in the history
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com>
  • Loading branch information
3 people authored Nov 18, 2024
1 parent e91dc0b commit ba20a3a
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,7 @@ jobs:
build-application-linux-non-debian:
strategy:
matrix:
# TODO: reactivate...
# os: ["quay.io/centos/centos:stream9", "fedora:latest"]
os: ["quay.io/centos/centos:stream9"]
os: ["quay.io/centos/centos:stream9", "fedora:40"]
fail-fast: false
name: "Build Application Linux - ${{ matrix.os }}"
runs-on: ubuntu-latest
Expand All @@ -251,11 +249,21 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install CentOS/Fedora Dependencies
if: contains(matrix.os, 'centos') || contains(matrix.os, 'fedora')
- name: Update and Install development tools - Fedora
if: contains(matrix.os, 'fedora')
run: |
yum update -y
yum group install development-tools -y
- name: Update and Install development tools - Centos
if: contains(matrix.os, 'centos')
run: |
yum update -y
yum groupinstall "Development Tools" -y
- name: Install CentOS/Fedora Dependencies
if: contains(matrix.os, 'centos') || contains(matrix.os, 'fedora')
run: |
yum install python3 \
python3-pip \
wget \
Expand Down Expand Up @@ -461,11 +469,10 @@ jobs:
name: Python-Installer-centos_stream9
path: installer

# TODO: reactivate...
# - uses: actions/download-artifact@v4
# with:
# name: Python-Installer-fedora_latest
# path: installer
- uses: actions/download-artifact@v4
with:
name: Python-Installer-fedora_latest
path: installer

- name: Display structure of downloaded files
run: ls -R
Expand Down

0 comments on commit ba20a3a

Please sign in to comment.