Skip to content

Commit e39ccf7

Browse files
committed
GHA: Work around weird macOS regression after switching to homebrew make
1 parent 54011ee commit e39ccf7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/supported_llvm_versions.yml

+4
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,10 @@ jobs:
139139
if [[ '${{ runner.os }}' == 'Linux' ]]; then
140140
# FIXME: lsan_interceptors.cpp:82 "((!lsan_init_is_running)) != (0)"
141141
rm tests/sanitizers/lsan_memleak.d
142+
elif [[ '${{ runner.os }}' == 'macOS' ]]; then
143+
# work around weird lit-test `plugins/addFuncEntryCall/testPlugin.d`
144+
# regression after switching to homebrew make (default CXX is clang++)
145+
export CXX=c++
142146
fi
143147
ctest -V -R "lit-tests"
144148
- name: Run DMD testsuite

0 commit comments

Comments
 (0)