From f9cd08e3b7c300b2e1b375fc757b761a9a3de820 Mon Sep 17 00:00:00 2001 From: Valentin Haudiquet Date: Sat, 21 Mar 2026 01:03:10 +0100 Subject: [PATCH] ci: add record-daemon build-deps --- .github/workflows/record-daemon.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/record-daemon.yml b/.github/workflows/record-daemon.yml index b23116b..bbf83e5 100644 --- a/.github/workflows/record-daemon.yml +++ b/.github/workflows/record-daemon.yml @@ -33,14 +33,19 @@ jobs: - name: Check format run: cargo fmt --check - - name: Lint - run: cargo clippy --all-targets --all-features + - name: Install system build dependencies + run: | + sudo apt-get update + sudo apt-get install -y pkg-config libglib2.0-dev libobs-dev - name: Build run: cargo build env: RUSTFLAGS: -Dwarnings + - name: Lint + run: cargo clippy --all-targets --all-features + - name: Run tests with verbose logging (timeout 30min) run: timeout 30m cargo test -- --nocapture env: