2020-10-13 11:46:57 +01:00
|
|
|
# typed: false
|
2020-07-06 22:19:17 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require "cli/parser"
|
|
|
|
require "utils/github"
|
|
|
|
|
|
|
|
module Homebrew
|
|
|
|
module_function
|
|
|
|
|
|
|
|
def dispatch_build_bottle_args
|
|
|
|
Homebrew::CLI::Parser.new do
|
|
|
|
usage_banner <<~EOS
|
|
|
|
`dispatch-build-bottle` [<options>] <formula> [<formula> ...]
|
|
|
|
|
|
|
|
Build bottles for these formulae with GitHub Actions.
|
|
|
|
EOS
|
|
|
|
flag "--tap=",
|
|
|
|
description: "Target tap repository (default: `homebrew/core`)."
|
|
|
|
flag "--issue=",
|
|
|
|
description: "If specified, post a comment to this issue number if the job fails."
|
|
|
|
flag "--macos=",
|
|
|
|
description: "Version of macOS the bottle should be built for."
|
|
|
|
flag "--workflow=",
|
|
|
|
description: "Dispatch specified workflow (default: `dispatch-build-bottle.yml`)."
|
|
|
|
switch "--upload",
|
|
|
|
description: "Upload built bottles to Bintray."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def dispatch_build_bottle
|
|
|
|
args = dispatch_build_bottle_args.parse
|
|
|
|
|
|
|
|
raise FormulaUnspecifiedError if args.named.empty?
|
|
|
|
|
|
|
|
odie "Must specify --macos option" unless args.macos
|
|
|
|
|
|
|
|
macos = begin
|
|
|
|
MacOS::Version.from_symbol(args.macos.to_sym)
|
|
|
|
rescue MacOSVersionError
|
|
|
|
MacOS::Version.new(args.macos)
|
|
|
|
end
|
|
|
|
|
|
|
|
tap = Tap.fetch(args.tap || CoreTap.instance.name)
|
|
|
|
user, repo = tap.full_name.split("/")
|
|
|
|
|
|
|
|
workflow = args.workflow || "dispatch-build-bottle.yml"
|
|
|
|
ref = "master"
|
|
|
|
|
|
|
|
args.named.to_resolved_formulae.each do |formula|
|
|
|
|
# Required inputs
|
|
|
|
inputs = {
|
|
|
|
formula: formula.name,
|
|
|
|
macos: macos.to_s,
|
|
|
|
}
|
|
|
|
|
|
|
|
# Optional inputs
|
|
|
|
# These cannot be passed as nil to GitHub API
|
|
|
|
inputs[:issue] = args.issue if args.issue
|
|
|
|
inputs[:upload] = args.upload?.to_s if args.upload?
|
|
|
|
|
|
|
|
ohai "Dispatching #{tap} bottling request of formula \"#{formula.name}\" for macOS #{macos}"
|
|
|
|
GitHub.workflow_dispatch_event(user, repo, workflow, ref, inputs)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|