Skip to content

Commit

Permalink
ci: Fix missing system dep on functional tests (#1459)
Browse files Browse the repository at this point in the history
Tests failed with the following error when building dbus-python:

```
../subprojects/dbus-gmain/meson.build:108:11: ERROR: Dependency "glib-2.0" not found, tried pkgconfig and cmake
```
  • Loading branch information
rockstorm101 authored Oct 17, 2024
1 parent 991fa18 commit 3a98be8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Install system dependencies
run: |
sudo apt update
sudo apt install -y libdbus-1-dev libgtk-3-0 libxxf86vm1 libnotify4 libsdl2-2.0-0 libsm6 libpcre2-32-0
sudo apt install -y libglib2.0-dev libdbus-1-dev libgtk-3-0 libxxf86vm1 libnotify4 libsdl2-2.0-0 libsm6 libpcre2-32-0
- name: Install Printrun dependencies
run: |
Expand Down

0 comments on commit 3a98be8

Please sign in to comment.