Skip to content

Commit

Permalink
Fix Windows CI with SDL3 on x86 and with MinGW
Browse files Browse the repository at this point in the history
  • Loading branch information
derselbst committed Feb 1, 2025
1 parent de1daa4 commit 457b8a9
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions .azure/azure-pipelines-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ trigger:
- 'README.md'

variables:
sdl3-x86: 'https://github.com/libsdl-org/SDL/releases/download/release-3.2.0/SDL3-devel-3.2.0-mingw.zip'
sdl3-x64: 'https://github.com/libsdl-org/SDL/releases/download/release-3.2.0/SDL3-devel-3.2.0-VC.zip'
sdl3-url: 'https://github.com/libsdl-org/SDL/releases/download/release-3.2.0/SDL3-devel-3.2.0-VC.zip'

jobs:
- job: WindowsXP
Expand All @@ -30,7 +29,6 @@ jobs:
platform: Win32
gtk-bundle: $(gtk-bundle-x86)
libsndfile-url: $(libsndfile-url-x86)
sdl3-url: $(sdl3-x86)
artifact-prefix: "fluidsynth"
CFLAGS: "/arch:IA32"
CXXFLAGS: "/arch:IA32"
Expand All @@ -39,7 +37,6 @@ jobs:
platform: x64
gtk-bundle: $(gtk-bundle-x64)
libsndfile-url: $(libsndfile-url-x64)
sdl3-url: $(sdl3-x64)
artifact-prefix: "fluidsynth"
CFLAGS: ""
CXXFLAGS: ""
Expand Down Expand Up @@ -68,8 +65,6 @@ jobs:
7z x -aos -- sdl3-dev.zip > NUL || exit -1
rm *.zip
cd SDL3-*
cp -rf i686-w64-mingw32/* ..
rm -rf x86_64-w64-mingw32 i686-w64-mingw32
cp -rf * ..
cd ..
rm -rf SDL3-*
Expand Down Expand Up @@ -229,11 +224,6 @@ jobs:
7z x -aos -- sdl3.zip > NUL || exit -1
rm *.zip
cd SDL3-*
rm -rf i686*
cd x86_64*
cp -rf * ../..
cd ..
rm -rf x86_64*
cp -rf * ..
cd ..
rm -rf SDL3-*
Expand Down

0 comments on commit 457b8a9

Please sign in to comment.