From 62d4697db6268b71e36ef8fda708953cadf4082a Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Sun, 2 Feb 2025 16:43:25 +0100 Subject: [PATCH] gitlab-ci: Disable cmake:mingw for now Executing /mingw64/bin/cmake.exe with any arguments fails without error message and exit code 127 since 2025-01-21. I have no idea why. --- .gitlab-ci.yml | 7 +++++++ .gitlab-ci/test_cmake.sh | 17 +---------------- 2 files changed, 8 insertions(+), 16 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7bef9059..bb5ba44b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -154,6 +154,11 @@ cmake:linux:clang:static: CC: clang 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: tags: - win32-ps @@ -193,6 +198,8 @@ cmake:mingw:w64-i686:static: cmake:mingw:w64-x86_64:shared: extends: .cmake:mingw + only: + - schedules variables: BUILD_SHARED_LIBS: "ON" MSYSTEM: MINGW64 diff --git a/.gitlab-ci/test_cmake.sh b/.gitlab-ci/test_cmake.sh index c13e4864..99c22a8e 100644 --- a/.gitlab-ci/test_cmake.sh +++ b/.gitlab-ci/test_cmake.sh @@ -1,19 +1,6 @@ #!/bin/sh -echo '### 1' -#set -e - -which cmake -ls -l /mingw64/bin/cmake.exe -file /mingw64/bin/cmake.exe -/mingw64/bin/cmake.exe --version - -echo CFLAGS="-Werror $CFLAGS" \ -cmake "$@" \ - -DBUILD_SHARED_LIBS=$BUILD_SHARED_LIBS \ - -DCMAKE_INSTALL_PREFIX=libxml2-install \ - -DCMAKE_BUILD_TYPE=RelWithDebInfo \ - -S . -B libxml2-build +set -e CFLAGS="-Werror $CFLAGS" \ cmake "$@" \ @@ -21,9 +8,7 @@ cmake "$@" \ -DCMAKE_INSTALL_PREFIX=libxml2-install \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -S . -B libxml2-build -echo '### 2' cmake --build libxml2-build --target install -echo '### 3' (cd libxml2-build && ctest -VV)