Skip to content

Commit b1bd9cc

Browse files
disable mingw(clang32) github tests in build.yaml
1 parent 931ed09 commit b1bd9cc

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

.github/workflows/build.yaml

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,18 @@ jobs:
298298
# Allow other runners in the matrix to continue if some fail
299299
fail-fast: false
300300

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+
301309
matrix:
302-
msystem: [MINGW64, MINGW32, CLANG64, CLANG32]
310+
# CLANG32 disabled for now:
311+
# msystem: [MINGW64, MINGW32, CLANG64, CLANG32]
312+
msystem: [MINGW64, MINGW32, CLANG64]
303313
include:
304314
- msystem: MINGW64
305315
target-prefix: mingw-w64-x86_64
@@ -310,10 +320,11 @@ jobs:
310320
- msystem: CLANG64
311321
target-prefix: mingw-w64-clang-x86_64
312322
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
317328

318329
env:
319330
CHERE_INVOKING: 1

0 commit comments

Comments
 (0)