mirror of
https://github.com/beetbox/beets.git
synced 2026-02-17 12:56:05 +01:00
Ensure mp3gain is installed in CI
This commit is contained in:
parent
4ad288793e
commit
d0b4af5178
1 changed files with 9 additions and 3 deletions
12
.github/workflows/ci.yaml
vendored
12
.github/workflows/ci.yaml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue