浏览代码

Install obs-studio from ppa

This installs OBS Studio from the OBS ppa. This is a temporary fix
to prevent the CI from failing if a developer uses newer code
then what the unofficial Ubuntu repo provides (27.2.3 on 22.04).
This isn't ideal as it installs the entire program instead of just
dev packages. In the future, we would provide a libobs-dev package
on our ppa.
cg2121 2 年之前
父节点
当前提交
13c6bbbaaf
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4 1
      .github/scripts/utils.zsh/setup_linux

+ 4 - 1
.github/scripts/utils.zsh/setup_linux

@@ -35,10 +35,13 @@ if (( ! (${skips[(Ie)all]} + ${skips[(Ie)deps]}) )) {
     sudo apt-get install ${apt_args} gcc-${${target##*-}//_/-}-linux-gnu g++-${${target##*-}//_/-}-linux-gnu
   }
 
+  sudo add-apt-repository --yes ppa:obsproject/obs-studio
+  sudo apt update
+
   sudo apt-get install ${apt_args} \
     build-essential \
     libgles2-mesa-dev \
-    libobs-dev${suffix}
+    obs-studio
 
   local -a _qt_packages=()