[llvm] workflows/release-binaries: Drop x86_64 Mac OS builds (PR #165645)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 29 21:20:42 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-github-workflow
Author: Tom Stellard (tstellar)
<details>
<summary>Changes</summary>
We don't have the resources to test this and the builds are very expensive. If someone is interested in providing x86_64 macOS they can submit this as third-party binaries or provide resources to test the builds.
---
Full diff: https://github.com/llvm/llvm-project/pull/165645.diff
2 Files Affected:
- (modified) .github/workflows/release-binaries-all.yml (-1)
- (modified) .github/workflows/release-binaries.yml (-11)
``````````diff
diff --git a/.github/workflows/release-binaries-all.yml b/.github/workflows/release-binaries-all.yml
index 0b52a08202f1a..eef49b5e3625d 100644
--- a/.github/workflows/release-binaries-all.yml
+++ b/.github/workflows/release-binaries-all.yml
@@ -90,7 +90,6 @@ jobs:
runs-on:
- ubuntu-22.04
- ubuntu-22.04-arm
- - macos-13
- macos-14
uses: ./.github/workflows/release-binaries.yml
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 8145926265256..fa73b9d9fe8d0 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -21,7 +21,6 @@ on:
options:
- ubuntu-22.04
- ubuntu-22.04-arm
- - macos-13
- macos-14
workflow_call:
@@ -130,8 +129,6 @@ jobs:
target_cmake_flags="$target_cmake_flags -DBOOTSTRAP_BOOTSTRAP_COMPILER_RT_ENABLE_IOS=OFF"
if [ "$RUNNER_ARCH" = "ARM64" ]; then
arches=arm64
- else
- arches=x86_64
fi
target_cmake_flags="$target_cmake_flags -DBOOTSTRAP_BOOTSTRAP_DARWIN_osx_ARCHS=$arches -DBOOTSTRAP_BOOTSTRAP_DARWIN_osx_BUILTIN_ARCHS=$arches"
fi
@@ -147,14 +144,6 @@ jobs:
build_runs_on="depot-${{ inputs.runs-on }}-16"
test_runs_on=$build_runs_on
;;
- macos-13)
- if [ "$GITHUB_EVENT_NAME" = "pull_request" ]; then
- build_runs_on="${{ inputs.runs-on }}"
- else
- build_runs_on="macos-13-large"
- fi
- test_runs_on="${{ inputs.runs-on }}"
- ;;
macos-14)
if [ "$GITHUB_EVENT_NAME" = "pull_request" ]; then
build_runs_on="${{ inputs.runs-on }}"
``````````
</details>
https://github.com/llvm/llvm-project/pull/165645
More information about the llvm-commits
mailing list