We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b3edb5 commit 12a3bf3Copy full SHA for 12a3bf3
.github/workflows/llvm-project-tests.yml
@@ -118,6 +118,11 @@ jobs:
118
else
119
builddir="$(pwd)"/build
120
fi
121
+ if [ "${{ runner.os }}" == "macOS" ]; then
122
+ # Workaround test failure on some lld tests on MacOS
123
+ # https://github.com/llvm/llvm-project/issues/81967
124
+ extra_cmake_args="-DLLVM_DISABLE_ASSEMBLY_FILES=ON"
125
+ fi
126
echo "llvm-builddir=$builddir" >> "$GITHUB_OUTPUT"
127
cmake -G Ninja \
128
-B "$builddir" \
0 commit comments