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 cd20600 commit 175b533Copy full SHA for 175b533
.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