From d0b4af51781170636617bc47e3f99aa6a8f6e2a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0ar=C5=ABnas=20Nejus?= Date: Mon, 16 Feb 2026 22:05:28 +0000 Subject: [PATCH] Ensure mp3gain is installed in CI --- .github/workflows/ci.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index bfd05c718..0736a0a2f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -35,7 +35,12 @@ jobs: python-version: ${{ matrix.python-version }} cache: poetry - - name: Install PyGobject and release script dependencies on Ubuntu + - name: Install system dependencies on Windows + if: matrix.platform == 'windows-latest' + run: | + choco install mp3gain -y + + - name: Install system dependencies on Ubuntu if: matrix.platform == 'ubuntu-latest' run: | sudo apt update @@ -43,11 +48,12 @@ jobs: ffmpeg \ gobject-introspection \ gstreamer1.0-plugins-base \ - python3-gst-1.0 \ + imagemagick \ libcairo2-dev \ libgirepository-2.0-dev \ + mp3gain \ pandoc \ - imagemagick + python3-gst-1.0 - name: Get changed lyrics files id: lyrics-update