0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-19 20:32:15 +02:00

CI: Avoid installing recommended package on Ubuntu

This commit is contained in:
tytan652 2023-02-19 10:54:36 +01:00 committed by Ryan Foster
parent 3f9b2d627e
commit 070c2ec616

View File

@ -17,7 +17,7 @@ install_build-deps() {
status "Install OBS build dependencies"
trap "caught_error 'install_build-deps'" ERR
sudo apt-get install -y $@
sudo apt-get install --no-install-recommends -y $@
}
install_obs-deps() {
@ -26,9 +26,9 @@ install_obs-deps() {
trap "caught_error 'install_obs-deps'" ERR
if [ -z "${DISABLE_PIPEWIRE}" ]; then
sudo apt-get install -y $@ libpipewire-0.3-dev
sudo apt-get install --no-install-recommends -y $@ libpipewire-0.3-dev
else
sudo apt-get install -y $@
sudo apt-get install --no-install-recommends -y $@
fi
}
@ -37,7 +37,7 @@ install_qt5-deps() {
status "Install Qt5 dependencies"
trap "caught_error 'install_qt5-deps'" ERR
sudo apt-get install -y $@
sudo apt-get install --no-install-recommends -y $@
}
install_qt6-deps() {
@ -47,7 +47,7 @@ install_qt6-deps() {
_QT6_AVAILABLE="$(sudo apt-cache madison ${1})"
if [ "${_QT6_AVAILABLE}" ]; then
sudo apt-get install -y $@
sudo apt-get install --no-install-recommends -y $@
fi
}
@ -77,7 +77,7 @@ install_plugin-deps() {
status "Install plugin dependencies"
trap "caught_error 'install_plugin-deps'" ERR
sudo apt-get install -y $@
sudo apt-get install --no-install-recommends -y $@
}
install_dependencies() {