gitlab-ci: Reenable cmake:mingw

For some reason, it's working again.
This commit is contained in:
Nick Wellnhofer 2025-03-05 12:03:52 +01:00
parent 2af05f76fe
commit 5b56ed9b81

View File

@ -154,11 +154,6 @@ cmake:linux:clang:static:
CC: clang CC: clang
SUFFIX: linux-clang-static SUFFIX: linux-clang-static
# cmake:mingw is currently broken for unknown reasons.
#
# Executing /mingw64/bin/cmake.exe with any arguments fails without error
# message and exit code 127 since 2025-01-21.
.cmake:mingw: .cmake:mingw:
tags: tags:
- win32-ps - win32-ps
@ -189,8 +184,8 @@ cmake:mingw:w64-i686:shared:
cmake:mingw:w64-i686:static: cmake:mingw:w64-i686:static:
extends: .cmake:mingw extends: .cmake:mingw
only: # only:
- schedules # - schedules
variables: variables:
BUILD_SHARED_LIBS: "OFF" BUILD_SHARED_LIBS: "OFF"
MSYSTEM: MINGW32 MSYSTEM: MINGW32
@ -198,8 +193,8 @@ cmake:mingw:w64-i686:static:
cmake:mingw:w64-x86_64:shared: cmake:mingw:w64-x86_64:shared:
extends: .cmake:mingw extends: .cmake:mingw
only: # only:
- schedules # - schedules
variables: variables:
BUILD_SHARED_LIBS: "ON" BUILD_SHARED_LIBS: "ON"
MSYSTEM: MINGW64 MSYSTEM: MINGW64