[llvm] workflows/release-binaries: Build less projects on macos-13 runner (PR #125788)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 5 07:47:19 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-github-workflow
Author: Tom Stellard (tstellar)
<details>
<summary>Changes</summary>
We are currently hitting timeouts when using the GitHub hosted runners, so disable the flang, polly, and bolt projects to reduce build times.
---
Full diff: https://github.com/llvm/llvm-project/pull/125788.diff
1 Files Affected:
- (modified) .github/workflows/release-binaries.yml (+4-1)
``````````diff
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 204ee6405382fc..42ed2dd34552d3 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -149,7 +149,6 @@ jobs:
target_cmake_flags="$target_cmake_flags -DLLVM_RELEASE_ENABLE_LTO=OFF"
fi
- echo "target-cmake-flags=$target_cmake_flags" >> $GITHUB_OUTPUT
echo "build-flang=$build_flang" >> $GITHUB_OUTPUT
case "${{ inputs.runs-on }}" in
ubuntu-22.04*)
@@ -163,6 +162,9 @@ jobs:
build_runs_on="macos-13-large"
fi
test_runs_on="${{ inputs.runs-on }}"
+ # These runners hit timeouts building all of LLVM, so we need to
+ # limit the projects that we build.
+ target_cmake_flags="$target_cmake_flags -DLLVM_RELEASE_ENABLE_PROJECTS='clang;lld;lldb;clang-tools-extra;mlir'"
;;
macos-14)
if [ "$GITHUB_EVENT_NAME" = "pull_request" ]; then
@@ -177,6 +179,7 @@ jobs:
build_runs_on=$test_runs_on
;;
esac
+ echo "target-cmake-flags=$target_cmake_flags" >> $GITHUB_OUTPUT
echo "build-runs-on=$build_runs_on" >> $GITHUB_OUTPUT
echo "test-runs-on=$test_runs_on" >> $GITHUB_OUTPUT
``````````
</details>
https://github.com/llvm/llvm-project/pull/125788
More information about the llvm-commits
mailing list