We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ac85f1 commit df205a1Copy full SHA for df205a1
.github/workflows/ci.yml
@@ -74,7 +74,8 @@ jobs:
74
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends build-essential cmake fakeroot debhelper dpkg-dev; \
75
else \
76
dnf -y update --skip-broken && \
77
- dnf -y install cmake make gcc gcc-c++ rpm-build rpmdevtools; \
+ dnf -y install cmake cmake3 make gcc gcc-c++ rpm-build rpmdevtools; \
78
+ (command -v cmake >/dev/null 2>&1 || ln -s $(command -v cmake3) /usr/bin/cmake); \
79
fi; \
80
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release; \
81
cmake --build build -j$(nproc); \
0 commit comments