.github/workflows/build.yml: drop MINGW32 build
The MINGW32 build has been failing for a while because the MSYS2
repository has dropped MINGW32 versions of various packages in commit
6866be94df
I suppose nobody really uses 32 bit anymore. I'd like to have a 32
bit test of MPD, just to verify code correctness, but on the other
hand, I don't like solving problems like this MSYS2 packaging problem.
This commit is contained in:
parent
31e583e9f8
commit
5c2720a931
|
@ -139,7 +139,7 @@ jobs:
|
|||
build-msys2:
|
||||
strategy:
|
||||
matrix:
|
||||
platform: ['MINGW32', 'MINGW64', 'UCRT64']
|
||||
platform: ['MINGW64', 'UCRT64']
|
||||
defaults:
|
||||
run:
|
||||
shell: msys2 {0}
|
||||
|
|
Loading…
Reference in New Issue