Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fedora build fix, revert to fedora:40 #390

Merged
merged 3 commits into from
Nov 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading