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.
This commit is contained in:
Eremey Valetov
2026-02-22 13:24:46 -05:00
parent c68167cc65
commit 701d51938c
+3 -1
View File
@@ -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: |