From 1065658052fe3a6b287baf37cd62768ce7e916ec Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Tue, 7 Jan 2025 10:31:54 +0200 Subject: [PATCH] ci: remove installation of mikmod library xmp is the preferred mod play library --- .github/workflows/build-cmake.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-cmake.yml b/.github/workflows/build-cmake.yml index 077724df..edf1ce07 100644 --- a/.github/workflows/build-cmake.yml +++ b/.github/workflows/build-cmake.yml @@ -39,9 +39,9 @@ jobs: shell: bash run: | if [[ "${{ runner.os }}" == 'Linux' ]]; then - sudo apt update && sudo apt install libflac-dev libmikmod-dev libmpg123-dev libopusfile-dev libsdl2-dev libvorbis-dev libxmp-dev + sudo apt update && sudo apt install libflac-dev libmpg123-dev libopusfile-dev libsdl2-dev libvorbis-dev libxmp-dev elif [[ "${{ runner.os }}" == 'macOS' ]]; then - brew install flac libmikmod libvorbis libxmp mpg123 opusfile sdl2 + brew install flac libvorbis libxmp mpg123 opusfile sdl2 fi - name: Configure