aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2021-04-18 01:24:00 -0700
committerChris Robinson <[email protected]>2021-04-18 01:24:00 -0700
commit4a152e9d9dd0baed528f4508a747f77f8491da1a (patch)
tree556d692d89487a0966ca5c3b1d6044644aa1bc17 /.github
parent5165b29b1945e1cff5e8c042bd371a5b2da9b492 (diff)
Require RTKit for Linux CI
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index edf853c7..1c32fffe 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -28,7 +28,8 @@ jobs:
- {
name: "Linux",
os: ubuntu-latest,
- cmake_opts: "-DALSOFT_REQUIRE_ALSA=ON \
+ cmake_opts: "-DALSOFT_REQUIRE_RTKIT=ON \
+ -DALSOFT_REQUIRE_ALSA=ON \
-DALSOFT_REQUIRE_OSS=ON \
-DALSOFT_REQUIRE_PORTAUDIO=ON \
-DALSOFT_REQUIRE_PULSEAUDIO=ON \
@@ -38,7 +39,8 @@ jobs:
portaudio19-dev \
libasound2-dev \
libjack-dev \
- qtbase5-dev",
+ qtbase5-dev \
+ libdbus-1-dev",
build_type: "Release"
}