From: Takashi Sakamoto Date: Mon, 27 Jun 2022 08:46:54 +0000 (+0900) Subject: ci: separate libudev-dev installation from the other X-Git-Tag: v0.3.0~13 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=53f369f1de4750ed349d5341acf208b8456f667b;p=alsa-gobject.git ci: separate libudev-dev installation from the other The dependency on libudev-dev is specific to alsa-gobject libraries apart from the other libraries under alsa gobject-introspection team. Signed-off-by: Takashi Sakamoto --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0052ac6..94d802b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,8 +52,9 @@ jobs: sudo lxc exec builder -- su ubuntu -c 'sudo apt-get update' sudo lxc exec builder -- su ubuntu -c 'sudo apt-get -y full-upgrade' sudo lxc exec builder -- su ubuntu -c 'sudo apt-get install -y git build-essential' - sudo lxc exec builder -- su ubuntu -c 'sudo apt-get install -y meson ninja-build libglib2.0-dev libudev-dev gobject-introspection libgirepository1.0-dev' + sudo lxc exec builder -- su ubuntu -c 'sudo apt-get install -y meson ninja-build libglib2.0-dev gobject-introspection libgirepository1.0-dev' sudo lxc exec builder -- su ubuntu -c 'sudo apt-get install -y gi-docgen python3-gi' + sudo lxc exec builder -- su ubuntu -c 'sudo apt-get install -y libudev-dev' - name: Checkout repository. uses: actions/checkout@v2 - name: Generate archive and expand it inner the container.