[llvm] workflows/release-binaries: Build less projects on macos-13 runner (PR #125788)

Tom Stellard via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 4 16:16:40 PST 2025


https://github.com/tstellar created https://github.com/llvm/llvm-project/pull/125788

We are currently hitting timeouts when using the GitHub hosted runners, so disable the flang, polly, and bolt projects to reduce build times.

>From 192b5aa328077e38128f21380a5e59c6a3af4f6b Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Tue, 4 Feb 2025 16:14:27 -0800
Subject: [PATCH] workflows/release-binaries: Build less projects on macos-13
 runner

We are currently hitting timeouts when using the GitHub hosted runners,
so disable the flang, polly, and bolt projects to reduce build times.
---
 .github/workflows/release-binaries.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 204ee6405382fc..d7d8b645e0582a 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -163,6 +163,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



More information about the llvm-commits mailing list