From 128b27b115c5c64c6526cdcc24c7f4950fe60876 Mon Sep 17 00:00:00 2001 From: Sakthi Prakash R <151930473+anssakthi@users.noreply.github.com> Date: Mon, 4 Nov 2024 20:21:37 +0530 Subject: [PATCH] Update ci_cd.yml --- .github/workflows/ci_cd.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index bfe7d39..48c4afd 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -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 \