@@ -58,21 +58,21 @@ jobs:
58
58
- name : Extract w64devkit
59
59
run : ${{github.workspace}}\w64devkit.exe -y
60
60
- name : Download SDL2-devel
61
- run : invoke-webrequest https://github.com/libsdl-org/SDL/releases/download/release-2.30.8 /SDL2-devel-2.30.8 -mingw.zip -outfile ${{github.workspace}}\sdl2-devel.zip
61
+ run : invoke-webrequest https://github.com/libsdl-org/SDL/releases/download/release-2.30.9 /SDL2-devel-2.30.9 -mingw.zip -outfile ${{github.workspace}}\sdl2-devel.zip
62
62
- name : Extract SDL2-devel
63
63
run : expand-archive -path ${{github.workspace}}\sdl2-devel.zip -destinationpath ${{github.workspace}}
64
64
- name : Copy SDL2-devel contents to w64devkit
65
65
run : |
66
- robocopy ${{github.workspace}}\SDL2-2.30.8 \i686-w64-mingw32 ${{github.workspace}}\w64devkit\i686-w64-mingw32 /s ; if ($lastexitcode -lt 8) { $global:LASTEXITCODE = $null }
67
- robocopy ${{github.workspace}}\SDL2-2.30.8 \i686-w64-mingw32 ${{github.workspace}}\w64devkit /s ; if ($lastexitcode -lt 8) { $global:LASTEXITCODE = $null }
66
+ robocopy ${{github.workspace}}\SDL2-2.30.9 \i686-w64-mingw32 ${{github.workspace}}\w64devkit\i686-w64-mingw32 /s ; if ($lastexitcode -lt 8) { $global:LASTEXITCODE = $null }
67
+ robocopy ${{github.workspace}}\SDL2-2.30.9 \i686-w64-mingw32 ${{github.workspace}}\w64devkit /s ; if ($lastexitcode -lt 8) { $global:LASTEXITCODE = $null }
68
68
- name : Set environment variables and build
69
69
run : |
70
70
$env:Path = "${{github.workspace}}\w64devkit\bin;" + $env:Path
71
71
cmake -B build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_CXX_FLAGS="-isystem ${{github.workspace}}\w64devkit\include" -G "MinGW Makefiles"
72
72
cmake --build build --config ${{env.BUILD_TYPE}}
73
73
strip ${{github.workspace}}\edge-classic.exe
74
74
- name : Copy SDL2 DLL
75
- run : copy-item -path ${{github.workspace}}\SDL2-2.30.8 \i686-w64-mingw32\bin\SDL2.dll -destination ${{github.workspace}}
75
+ run : copy-item -path ${{github.workspace}}\SDL2-2.30.9 \i686-w64-mingw32\bin\SDL2.dll -destination ${{github.workspace}}
76
76
- uses : actions/upload-artifact@v4
77
77
with :
78
78
name : edge-classic-mingw
0 commit comments