@@ -298,8 +298,18 @@ jobs:
298
298
# Allow other runners in the matrix to continue if some fail
299
299
fail-fast : false
300
300
301
+ # CLANG32 is broken, as of Mar 21, 2024. The stable branch CI also fails
302
+ # the same way, even though it succeeded on Mar 2, with the same
303
+ # SuiteSparse 7.6.1 and same workflow file. Between that time, clang and
304
+ # openmp were upgraded. clang-openmp went from 17.0.6-1 to 18.1.1-1, and
305
+ # clang itself went from 17.0.6-7 to 18.1.1-3. Nothing else changed, so
306
+ # it must be a problem with the github runner (changed from 2.313.0 to
307
+ # 2.314.1). So for now, CLANG32 is excluded from this CI test.
308
+
301
309
matrix :
302
- msystem : [MINGW64, MINGW32, CLANG64, CLANG32]
310
+ # CLANG32 disabled for now:
311
+ # msystem: [MINGW64, MINGW32, CLANG64, CLANG32]
312
+ msystem : [MINGW64, MINGW32, CLANG64]
303
313
include :
304
314
- msystem : MINGW64
305
315
target-prefix : mingw-w64-x86_64
@@ -310,10 +320,11 @@ jobs:
310
320
- msystem : CLANG64
311
321
target-prefix : mingw-w64-clang-x86_64
312
322
f77-package : mingw-w64-clang-x86_64-fc
313
- - msystem : CLANG32
314
- target-prefix : mingw-w64-clang-i686
315
- # There's no Fortran compiler for this environment.
316
- f77-package : mingw-w64-clang-i686-cc
323
+ # CLANG32 disabled for now:
324
+ # - msystem: CLANG32
325
+ # target-prefix: mingw-w64-clang-i686
326
+ # # There's no Fortran compiler for this environment.
327
+ # f77-package: mingw-w64-clang-i686-cc
317
328
318
329
env :
319
330
CHERE_INVOKING : 1
0 commit comments