homebrew-core/Formula/pulumi.rb
2019-02-25 09:40:14 -08:00

46 lines
1.5 KiB
Ruby

class Pulumi < Formula
desc "Cloud native development platform"
homepage "https://pulumi.io/"
url "https://github.com/pulumi/pulumi.git",
:tag => "v0.16.16",
:revision => "c53f697a6f84767be00a366c6186f76c02d09a6f"
bottle do
cellar :any_skip_relocation
sha256 "cc3693f5981ea3f64fb472ec8fa538376bbd1d84318495a8c81f9405ee2cf842" => :mojave
sha256 "9f421a629d91250bf39c18ebaa42326a1813f785e8e290eed6d5ea136b6a63c4" => :high_sierra
sha256 "cdb02c34ae2f5b887d5eb62113bb0fe966f7785da50457281f3b055c177d0f0f" => :sierra
end
depends_on "dep" => :build
depends_on "go" => :build
def install
ENV["GOPATH"] = buildpath
dir = buildpath/"src/github.com/pulumi/pulumi"
dir.install buildpath.children
cd dir do
system "dep", "ensure", "-vendor-only"
system "make", "dist"
bin.install Dir["#{buildpath}/bin/*"]
prefix.install_metafiles
# Install bash completion
output = Utils.popen_read("#{bin}/pulumi gen-completion bash")
(bash_completion/"pulumi").write output
# Install zsh completion
output = Utils.popen_read("#{bin}/pulumi gen-completion zsh")
(zsh_completion/"_pulumi").write output
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