Skip to content

Commit

Permalink
Update ci_cd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
anssakthi authored Nov 4, 2024
1 parent 20b5fde commit 128b27b
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,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

0 comments on commit 128b27b

Please sign in to comment.