ci: don't install unnecessary dependencies

This commit is contained in:
dundargoc
2023-05-01 07:39:27 +02:00
committed by GitHub
parent edf05b005f
commit e7da49d5bf
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ done
os=$(uname -s)
if [[ $os == Linux ]]; then
$SUDO apt-get update
$SUDO apt-get install -y build-essential cmake curl gettext ninja-build pkg-config unzip
$SUDO apt-get install -y build-essential cmake curl gettext ninja-build unzip
if [[ -n $TEST ]]; then
$SUDO apt-get install -y locales-all cpanminus
fi