From 91a86f73769b27b7a318a585e962458e64865c45 Mon Sep 17 00:00:00 2001 From: Mike Detwiler Date: Sat, 10 Dec 2022 15:09:06 +0000 Subject: [PATCH] Issue #131: Debug CI Signed-off-by: Mike Detwiler --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7169c5a..ea59fd9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,11 @@ jobs: alpine) apk update && apk upgrade && apk add git tar;; centos) case $VERSION_ID in - 7) yum -y install dnf;; + 7) + yum -y install dnf + dnf -y install centos-release-scl + dnf -y install rh-git227-git-core + ;; esac dnf -y upgrade && dnf -y install dnf-plugins-core git-core which ;; @@ -47,6 +51,7 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 + run: which scl && scl enable rh-git227 bash || true - name: Configure Gnulib Cache Key run: echo "GNULIB_CACHE_KEY=`git submodule status .gnulib | sed -re 's/^.([0-9,a-f]{1,}) .*$/\1/'`" >>$GITHUB_ENV