From 5ff1632fc12171adf8b71dd95cdbc71902d4c4cc Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Sun, 30 Mar 2025 11:02:58 +0200 Subject: [PATCH] Fix: [CI] Bump Fluidsynth to 2.4.4, fixing a compile error (#13919) CMake 3.1 is no longer supported; recently Fluidsynth made the jump to 3.5, which is supported. --- .github/workflows/release-linux.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-linux.yml b/.github/workflows/release-linux.yml index c5ce597f4c..d6f79057d2 100644 --- a/.github/workflows/release-linux.yml +++ b/.github/workflows/release-linux.yml @@ -71,10 +71,10 @@ jobs: # dependencies as possible. We do it before anything else is installed, # to make sure it doesn't pick up on any of the drivers. echo "::group::Install fluidsynth" - wget https://github.com/FluidSynth/fluidsynth/archive/v2.3.3.tar.gz - tar xf v2.3.3.tar.gz + wget https://github.com/FluidSynth/fluidsynth/archive/v2.4.4.tar.gz + tar xf v2.4.4.tar.gz ( - cd fluidsynth-2.3.3 + cd fluidsynth-2.4.4 mkdir build cd build cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=/usr