Skip to content

Commit

Permalink
Issue #131: Debug CI
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Detwiler <mike@detwiler.io>
  • Loading branch information
detwiler committed Dec 10, 2022
1 parent 22f5884 commit 91a86f7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
;;
Expand All @@ -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
Expand Down

0 comments on commit 91a86f7

Please sign in to comment.