Skip to content

Commit cc97a64

Browse files
committed
Disable broken Windows 32 bit CI build for now.
1 parent 03f9a48 commit cc97a64

File tree

1 file changed

+17
-11
lines changed

1 file changed

+17
-11
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,23 @@ jobs:
3333
build_type: 'Release',
3434
cmake_extra_flags: '-G "MinGW Makefiles"'
3535
}
36-
- {
37-
name: 'Windows 2022 MinGW 32bit',
38-
os: windows-2022,
39-
cc: 'i686-w64-mingw32-gcc',
40-
cxx: 'i686-w64-mingw32-g++',
41-
ar: 'i686-w64-mingw32-ar',
42-
windres: 'i686-w64-mingw32-windres',
43-
arch: 'i686',
44-
build_type: 'Release',
45-
cmake_extra_flags: '-G "MinGW Makefiles"'
46-
}
36+
# It seems that the MinGW 32 bit target is no longer supported
37+
# for the github runner. There might be a work-around, but for
38+
# now, disable it so we don't get the annoying failure message.
39+
# https://www.msys2.org/docs/windows_support/
40+
# https://github.com/marketplace/actions/install-mingw
41+
#
42+
# - {
43+
# name: 'Windows 2022 MinGW 32bit',
44+
# os: windows-2022,
45+
# cc: 'i686-w64-mingw32-gcc',
46+
# cxx: 'i686-w64-mingw32-g++',
47+
# ar: 'i686-w64-mingw32-ar',
48+
# windres: 'i686-w64-mingw32-windres',
49+
# arch: 'i686',
50+
# build_type: 'Release',
51+
# cmake_extra_flags: '-G "MinGW Makefiles"'
52+
# }
4753
- {
4854
name: 'macOS latest',
4955
os: macos-latest,

0 commit comments

Comments
 (0)