pulumi/.github/scripts/pulumi-tap-template.rb

75 lines
2.5 KiB
Ruby

# typed: false
# frozen_string_literal: true
# This file was generated by https://github.com/pulumi/pulumi/blob/master/.github/scripts/generate-homebrew-tap
class Pulumi < Formula
desc "Pulumi - Modern Infrastructure as Code. Any cloud, any language "
homepage "https://pulumi.com"
version "${PULUMI_VERSION}"
license "Apache-2.0"
on_macos do
if Hardware::CPU.intel?
url "${PULUMI_DARWIN_X64_URL}"
sha256 "${PULUMI_DARWIN_X64_SHA256}"
def install
bin.install Dir["*"]
# Install shell completions
(bash_completion/"pulumi.bash").write Utils.safe_popen_read("#{bin}/pulumi gen-completion bash")
(zsh_completion/"_pulumi").write Utils.safe_popen_read("#{bin}/pulumi gen-completion zsh")
(fish_completion/"pulumi.fish").write Utils.safe_popen_read("#{bin}/pulumi gen-completion fish")
end
end
if Hardware::CPU.arm?
url "${PULUMI_DARWIN_ARM64_URL}"
sha256 "${PULUMI_DARWIN_ARM64_SHA256}"
def install
bin.install Dir["*"]
# Install shell completions
(bash_completion/"pulumi.bash").write Utils.safe_popen_read("#{bin}/pulumi gen-completion bash")
(zsh_completion/"_pulumi").write Utils.safe_popen_read("#{bin}/pulumi gen-completion zsh")
(fish_completion/"pulumi.fish").write Utils.safe_popen_read("#{bin}/pulumi gen-completion fish")
end
end
end
on_linux do
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "${PULUMI_LINUX_ARM64_URL}"
sha256 "${PULUMI_LINUX_ARM64_SHA256}"
def install
bin.install Dir["*"]
# Install shell completions
(bash_completion/"pulumi.bash").write Utils.safe_popen_read("#{bin}/pulumi gen-completion bash")
(zsh_completion/"_pulumi").write Utils.safe_popen_read("#{bin}/pulumi gen-completion zsh")
(fish_completion/"pulumi.fish").write Utils.safe_popen_read("#{bin}/pulumi gen-completion fish")
end
end
if Hardware::CPU.intel?
url "${PULUMI_LINUX_X64_URL}"
sha256 "${PULUMI_LINUX_X64_SHA256}"
def install
bin.install Dir["*"]
# Install shell completions
(bash_completion/"pulumi.bash").write Utils.safe_popen_read("#{bin}/pulumi gen-completion bash")
(zsh_completion/"_pulumi").write Utils.safe_popen_read("#{bin}/pulumi gen-completion zsh")
(fish_completion/"pulumi.fish").write Utils.safe_popen_read("#{bin}/pulumi gen-completion fish")
end
end
end
conflicts_with "pulumi"
test do
system "#{bin}/pulumi version"
end
end