Skip to content

Commit

Permalink
ci/qa: Install glib debs with wlidcards and fetch them by source name (
Browse files Browse the repository at this point in the history
…#588)

In this way we can handle properly the noble update of CI machine.

In my fork gh started moving to noble, and we failed since the new glib
package is `libglib2.0-0t64`.

So be stronger to that change.
  • Loading branch information
3v1n0 authored Oct 16, 2024
2 parents 2ff47eb + 4d5ecb6 commit 0efc1d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,11 @@ jobs:
sudo tee -a /etc/apt/sources.list.d/ddebs.list
# Sometimes ddebs archive is stuck, so in case of failure we need to go manual
sudo apt update -y || true
if ! sudo apt install -y libpam-modules-dbgsym libpam0*-dbgsym libglib2.0-0-dbgsym; then
if ! sudo apt install -y libpam-modules-dbgsym libpam0*-dbgsym libglib2.0-0*-dbgsym; then
sudo apt install -y ubuntu-dev-tools
pull-lp-ddebs pam $(lsb_release -cs)
pull-lp-ddebs libglib2.0-0 $(lsb_release -cs)
sudo apt install -y ./libpam0*.ddeb ./libpam-modules*.ddeb ./libglib2.0-0-dbgsym*.ddeb
pull-lp-ddebs glib2.0 $(lsb_release -cs)
sudo apt install -y ./libpam0*.ddeb ./libpam-modules*.ddeb ./libglib2.0-0*-dbgsym*.ddeb
sudo apt remove -y ubuntu-dev-tools
sudo apt autoremove -y
fi
Expand Down

0 comments on commit 0efc1d6

Please sign in to comment.