[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 17:42:36 PST 2025
https://github.com/tstellar updated https://github.com/llvm/llvm-project/pull/125788
>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 1/4] 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 204ee6405382fcf..d7d8b645e0582a9 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
>From b0e068c4e9c52d19300194d096080ae1720b91d4 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Tue, 4 Feb 2025 16:26:38 -0800
Subject: [PATCH 2/4] Fixes
---
.github/workflows/release-binaries.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index d7d8b645e0582a9..864024b90619e0b 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*)
@@ -180,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
>From 875ce5e7576bef584945d5b3f50306633ef6f34e Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Tue, 4 Feb 2025 16:29:28 -0800
Subject: [PATCH 3/4] Re-run tests
>From af3544db32e3f95cb6ba498563ebb0c01001838c Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Tue, 4 Feb 2025 17:42:11 -0800
Subject: [PATCH 4/4] Re-run tests
More information about the llvm-commits
mailing list