Skip to content

Commit

Permalink
ci: Specify the mutter package to use
Browse files Browse the repository at this point in the history
This allows us to specify the mutter version instead of using globs (useful as some Ubuntu version have two mutter version in the repository while transitioning to the next version)
  • Loading branch information
tintou committed Sep 15, 2023
1 parent 1d50165 commit 1c954cf
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ jobs:
fail-fast: false
matrix:
version: [stable, unstable, development-target]
include:
- version: stable
mutter_pkg: libmutter-10-dev
- version: unstable
mutter_pkg: libmutter-10-dev
- version: development-target
mutter_pkg: libmutter-13-dev
container:
image: ghcr.io/elementary/docker:${{ matrix.version }}

Expand All @@ -24,7 +31,7 @@ jobs:
- name: Install Dependencies
run: |
apt update
apt install -y gettext gnome-settings-daemon-dev gsettings-desktop-schemas-dev libbamf3-dev libcanberra-dev libcanberra-gtk3-dev libclutter-1.0-dev libgee-0.8-dev libglib2.0-dev libgnome-desktop-3-dev libgranite-dev libgtk-3-dev libmutter-*-dev libplank-dev libxml2-utils libgexiv2-dev meson valac valadoc
apt install -y gettext gnome-settings-daemon-dev gsettings-desktop-schemas-dev libbamf3-dev libcanberra-dev libcanberra-gtk3-dev libclutter-1.0-dev libgee-0.8-dev libglib2.0-dev libgnome-desktop-3-dev libgranite-dev libgtk-3-dev ${{ matrix.mutter_pkg }} libplank-dev libxml2-utils libgexiv2-dev meson valac valadoc
- name: Build
env:
DESTDIR: out
Expand Down

0 comments on commit 1c954cf

Please sign in to comment.