[llvm-branch-commits] [llvm] workflows: Add workaround for lld failures on MacOS (#85021) (PR #85110)
Tom Stellard via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Mar 13 10:46:26 PDT 2024
https://github.com/tstellar created https://github.com/llvm/llvm-project/pull/85110
See #81967
(cherry picked from commit 175b533720956017bb18d1280362f6890ee15b05)
>From b1461c4b8b30a0086bca54e987580c63ae8174b4 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Wed, 13 Mar 2024 10:44:12 -0700
Subject: [PATCH] workflows: Add workaround for lld failures on MacOS (#85021)
See #81967
(cherry picked from commit 175b533720956017bb18d1280362f6890ee15b05)
---
.github/workflows/llvm-project-tests.yml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/.github/workflows/llvm-project-tests.yml b/.github/workflows/llvm-project-tests.yml
index 43b90193406fc9..a52dd2db8035dd 100644
--- a/.github/workflows/llvm-project-tests.yml
+++ b/.github/workflows/llvm-project-tests.yml
@@ -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" \
More information about the llvm-branch-commits
mailing list