Merge pull request #19593 from Homebrew/dispatch-arm64-linux

dev-cmd/dispatch-build-bottle: support arm64 Linux
This commit is contained in:
Carlo Cabrera 2025-03-25 08:52:12 +00:00 committed by GitHub
commit 6c49462b41
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 3 deletions

View File

@ -26,9 +26,11 @@ module Homebrew
switch "--upload",
description: "Upload built bottles."
switch "--linux",
description: "Dispatch bottle for Linux (using GitHub runners)."
description: "Dispatch bottle for Linux x86_64 (using GitHub runners)."
switch "--linux-arm64",
description: "Dispatch bottle for Linux arm64 (using GitHub runners)."
switch "--linux-self-hosted",
description: "Dispatch bottle for Linux (using self-hosted runner)."
description: "Dispatch bottle for Linux x86_64 (using self-hosted runner)."
switch "--linux-wheezy",
description: "Use Debian Wheezy container for building the bottle on Linux."
@ -70,7 +72,11 @@ module Homebrew
runners << "linux-self-hosted-1"
end
raise UsageError, "Must specify `--macos`, `--linux` or `--linux-self-hosted` option." if runners.empty?
runners << "ubuntu-22.04-arm" if args.linux_arm64?
if runners.empty?
raise UsageError, "Must specify `--macos`, `--linux`, `--linux-arm64`, or `--linux-self-hosted` option."
end
args.named.to_resolved_formulae.each do |formula|
# Required inputs

View File

@ -17,6 +17,9 @@ class Homebrew::DevCmd::DispatchBuildBottle::Args < Homebrew::CLI::Args
sig { returns(T::Boolean) }
def linux?; end
sig { returns(T::Boolean) }
def linux_arm64?; end
sig { returns(T::Boolean) }
def linux_self_hosted?; end