Skip to content

Commit 763026a

Browse files
committed
Exclude Qt 5.x and 6.2 with Clang on macOS 14+
1 parent 2887b8f commit 763026a

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

.github/workflows/build.yaml

+17-2
Original file line numberDiff line numberDiff line change
@@ -177,10 +177,25 @@ jobs:
177177
- { qt: '5.14.2', os: macos-15, env: { cc: gcc-14 } }
178178
- { qt: '5.15.2', os: macos-14, env: { cc: gcc-14 } }
179179
- { qt: '5.15.2', os: macos-15, env: { cc: gcc-14 } }
180+
# Exclude Qt 5.x and 6.2 with Clang on macOS 14+, since these have unit tests that hang on GitHub's runners.
181+
- { qt: '5.9.9', os: macos-14, env: { cc: clang } } # \todo Explore these hangs on a local macOS host,
182+
- { qt: '5.9.9', os: macos-15, env: { cc: clang } } # \todo because they might not be specific to GitHub.
183+
- { qt: '5.10.1', os: macos-14, env: { cc: clang } }
184+
- { qt: '5.10.1', os: macos-15, env: { cc: clang } }
185+
- { qt: '5.11.3', os: macos-14, env: { cc: clang } }
186+
- { qt: '5.11.3', os: macos-15, env: { cc: clang } }
187+
- { qt: '5.12.12', os: macos-14, env: { cc: clang } }
188+
- { qt: '5.12.12', os: macos-15, env: { cc: clang } }
189+
- { qt: '5.13.2', os: macos-14, env: { cc: clang } }
190+
- { qt: '5.13.2', os: macos-15, env: { cc: clang } }
191+
- { qt: '5.14.2', os: macos-14, env: { cc: clang } }
192+
- { qt: '5.14.2', os: macos-15, env: { cc: clang } }
193+
- { qt: '5.15.2', os: macos-14, env: { cc: clang } }
194+
- { qt: '5.15.2', os: macos-15, env: { cc: clang } }
195+
- { qt: '6.2.4', os: macos-14, env: { cc: clang } }
196+
- { qt: '5.2.4', os: macos-15, env: { cc: clang } }
180197
# Exclude Qt 5.10 with GCC on macOS. See https://bugreports.qt.io/browse/QTBUG-66585
181198
- { qt: '5.10.1', env: { cc: gcc-14 } }
182-
# Exclude Qt 6.2 on macOS 14+ (Qt6 only officially supports macOS 14 from Qt 6.4+, and some 6.2.n LTS update).
183-
#- { qt: '6.2.4', os: 'macos-14' }
184199
# Exclude Qt 6.x with GCC on macOS for now. See https://bugreports.qt.io/browse/QTBUG-107050
185200
- { qt: '6.2.4', env: { cc: gcc-14 } }
186201
- { qt: '6.3.2', env: { cc: gcc-14 } }

0 commit comments

Comments
 (0)