Skip to content

Commit

Permalink
workflows: Add workaround for lld failures on MacOS (llvm#85021)
Browse files Browse the repository at this point in the history
See llvm#81967

(cherry picked from commit 175b533)
  • Loading branch information
tstellar committed Mar 13, 2024
1 parent fcc33dc commit b1461c4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/llvm-project-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,11 @@ jobs:
else
builddir="$(pwd)"/build
fi
if [ "${{ runner.os }}" == "macOS" ]; then
# Workaround test failure on some lld tests on MacOS
# https://github.com/llvm/llvm-project/issues/81967
extra_cmake_args="-DLLVM_DISABLE_ASSEMBLY_FILES=ON"
fi
echo "llvm-builddir=$builddir" >> "$GITHUB_OUTPUT"
cmake -G Ninja \
-B "$builddir" \
Expand Down

0 comments on commit b1461c4

Please sign in to comment.