Skip to content

Commit c36c1e2

Browse files
committed
Update CI workflow to include Git installation for improved build process across DEB and RPM distributions.
1 parent df205a1 commit c36c1e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ jobs:
7171
docker run --rm -v "${{ github.workspace }}:/project" -w /project ${{ matrix.image }} /bin/bash -e -c "\
7272
if [ '${{ matrix.generator }}' = 'DEB' ]; then \
7373
apt-get update -qq && \
74-
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends build-essential cmake fakeroot debhelper dpkg-dev; \
74+
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends build-essential cmake git fakeroot debhelper dpkg-dev; \
7575
else \
7676
dnf -y update --skip-broken && \
77-
dnf -y install cmake cmake3 make gcc gcc-c++ rpm-build rpmdevtools; \
77+
dnf -y install cmake cmake3 make gcc gcc-c++ rpm-build rpmdevtools git; \
7878
(command -v cmake >/dev/null 2>&1 || ln -s $(command -v cmake3) /usr/bin/cmake); \
7979
fi; \
8080
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release; \

0 commit comments

Comments
 (0)