We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54011ee commit e39ccf7Copy full SHA for e39ccf7
.github/workflows/supported_llvm_versions.yml
@@ -139,6 +139,10 @@ jobs:
139
if [[ '${{ runner.os }}' == 'Linux' ]]; then
140
# FIXME: lsan_interceptors.cpp:82 "((!lsan_init_is_running)) != (0)"
141
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++
146
fi
147
ctest -V -R "lit-tests"
148
- name: Run DMD testsuite
0 commit comments