From b1bd9ccc5838178698daaf7c082371c27f86f3e2 Mon Sep 17 00:00:00 2001 From: Tim Davis Date: Thu, 21 Mar 2024 19:18:07 -0500 Subject: [PATCH] disable mingw(clang32) github tests in build.yaml --- .github/workflows/build.yaml | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 047745d64..e305fbc71 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -298,8 +298,18 @@ jobs: # Allow other runners in the matrix to continue if some fail fail-fast: false + # CLANG32 is broken, as of Mar 21, 2024. The stable branch CI also fails + # the same way, even though it succeeded on Mar 2, with the same + # SuiteSparse 7.6.1 and same workflow file. Between that time, clang and + # openmp were upgraded. clang-openmp went from 17.0.6-1 to 18.1.1-1, and + # clang itself went from 17.0.6-7 to 18.1.1-3. Nothing else changed, so + # it must be a problem with the github runner (changed from 2.313.0 to + # 2.314.1). So for now, CLANG32 is excluded from this CI test. + matrix: - msystem: [MINGW64, MINGW32, CLANG64, CLANG32] +# CLANG32 disabled for now: +# msystem: [MINGW64, MINGW32, CLANG64, CLANG32] + msystem: [MINGW64, MINGW32, CLANG64] include: - msystem: MINGW64 target-prefix: mingw-w64-x86_64 @@ -310,10 +320,11 @@ jobs: - msystem: CLANG64 target-prefix: mingw-w64-clang-x86_64 f77-package: mingw-w64-clang-x86_64-fc - - msystem: CLANG32 - target-prefix: mingw-w64-clang-i686 - # There's no Fortran compiler for this environment. - f77-package: mingw-w64-clang-i686-cc +# CLANG32 disabled for now: +# - msystem: CLANG32 +# target-prefix: mingw-w64-clang-i686 +# # There's no Fortran compiler for this environment. +# f77-package: mingw-w64-clang-i686-cc env: CHERE_INVOKING: 1