Skip to content

Commit

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

(cherry picked from commit 175b533)
  • Loading branch information
tstellar authored Mar 15, 2024
1 parent 9b3edb5 commit 12a3bf3
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 12a3bf3

Please sign in to comment.