Install build dependencies in CI workflow (#157)

This commit is contained in:
Copilot 2026-02-14 14:54:46 -08:00 committed by GitHub
parent 4633b62067
commit 00df9e5953
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 2 deletions

View File

@ -56,10 +56,19 @@ jobs:
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
- name: Install gnome-extensions CLI - name: Install build dependencies
run: | run: |
sudo apt-get update -qq sudo apt-get update -qq
sudo apt-get install -y gnome-shell-extension-prefs sudo apt-get install -y \
gnome-shell-extension-prefs \
meson \
ninja-build \
librsvg2-bin \
libglib2.0-dev \
gettext \
wget \
desktop-file-utils \
appstream
- name: Build library packages - name: Build library packages
run: | run: |