From 701d51938c6faceee6d7683c72b3dd56a03edd49 Mon Sep 17 00:00:00 2001 From: Eremey Valetov Date: Sun, 22 Feb 2026 13:24:46 -0500 Subject: [PATCH] Fix CI: apt-get update before installing libpulse-dev The Ubuntu package index on GitHub runners was stale, causing 404s for libglib2.0 (a transitive dependency of libpulse-dev). Also make the install non-fatal since PulseAudio is optional. --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b7bd39..4809da2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,9 @@ jobs: - uses: actions/checkout@v4 - name: Install dependencies - run: sudo apt-get install -y libpulse-dev + run: | + sudo apt-get update + sudo apt-get install -y libpulse-dev || true - name: Build run: |