From 63795658430fb112315ff05fb907ffa1dbfb46f8 Mon Sep 17 00:00:00 2001 From: Jorge Pereira Date: Fri, 4 Mar 2022 11:36:40 -0300 Subject: [PATCH] Fix Centos 8 CI build and enable Rocky 8 (#4399) * Fix Centos 8 CI build * Enable Rocky 8 CI build As the Centos 8 is EOL. Let's also consider see if the build is ok on Rocky 8. --- .github/workflows/ci-rpm.yml | 51 +++++++++++++++++++++++++++++++----- 1 file changed, 45 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-rpm.yml b/.github/workflows/ci-rpm.yml index c1f1dcaf6e..577f617341 100644 --- a/.github/workflows/ci-rpm.yml +++ b/.github/workflows/ci-rpm.yml @@ -31,9 +31,9 @@ jobs: M=$(cat < /etc/yum.repos.d/networkradius-extras.repo @@ -249,8 +288,8 @@ jobs: yum config-manager --enable powertools || : # For pkill - - name: Enable procps-ng on Fedora - if: ${{ startsWith(matrix.env.NAME, 'fedora-') }} + - name: Enable procps-ng on Fedora and Centos 8 + if: ${{ startsWith(matrix.env.NAME, 'fedora-') || startsWith(matrix.env.NAME, 'rocky-8') || startsWith(matrix.env.NAME, 'centos-8') }} run: | yum install -y procps-ng -- 2.47.3