another attempt of fixing GitHub action

This commit is contained in:
dj2ls 2022-09-05 09:20:59 +02:00
parent dbffd1f01d
commit c3f8e3d899

View file

@ -154,15 +154,18 @@ jobs:
case "${{ matrix.distro }}" in
ubuntu*|jessie|stretch|buster|bullseye)
apt-get update -q -y
apt-get install -q -y git build-essential cmake
apt-get install -q -y git build-essential cmake gcc g++
cmake --version
;;
fedora*)
dnf -y update
dnf -y install git which build-essential cmake
dnf -y install git which build-essential cmake gcc-c++ gcc
cmake --version
;;
alpine*)
apk update
apk add git build-essential cmake
apk add git build-essential cmake gcc g++
cmake --version
;;
esac