homebrew-core/Formula/pulumi.rb

51 lines
1.6 KiB
Ruby

class Pulumi < Formula
desc "Cloud native development platform"
homepage "https://pulumi.io/"
url "https://github.com/pulumi/pulumi.git",
:tag => "v2.5.0",
:revision => "ad721d3b5421b2a7b10a0dfdd8abae8cf4b80e69"
head "https://github.com/pulumi/pulumi.git"
bottle do
cellar :any_skip_relocation
sha256 "f7cc20c0135e0bf40c372f63e1aca9a313e5409a334c6e04862d7811eac0f223" => :catalina
sha256 "9f789bdef38e8099178635d7a4cc89e7f294e0c256a04620b97f768458fd06b3" => :mojave
sha256 "68ac096ceb7024c6dcbe2523b97475e0ae2587df5a7c2ed14d66da512b8c13f2" => :high_sierra
end
depends_on "go" => :build
def install
ENV["GOPATH"] = buildpath
ENV["GO111MODULE"] = "on"
dir = buildpath/"src/github.com/pulumi/pulumi"
dir.install buildpath.children
cd dir do
cd "./sdk" do
system "go", "mod", "download"
end
cd "./pkg" do
system "go", "mod", "download"
end
system "make", "brew"
bin.install Dir["#{buildpath}/bin/*"]
prefix.install_metafiles
# Install shell completions
(bash_completion/"pulumi.bash").write `#{bin}/pulumi gen-completion bash`
(zsh_completion/"_pulumi").write `#{bin}/pulumi gen-completion zsh`
(fish_completion/"pulumi.fish").write `#{bin}/pulumi gen-completion fish`
end
end
test do
ENV["PULUMI_ACCESS_TOKEN"] = "local://"
ENV["PULUMI_TEMPLATE_PATH"] = testpath/"templates"
system "#{bin}/pulumi", "new", "aws-typescript", "--generate-only",
"--force", "-y"
assert_predicate testpath/"Pulumi.yaml", :exist?, "Project was not created"
end
end