homebrew-core/Formula/aztfy.rb

33 lines
1.6 KiB
Ruby
Raw Normal View History

class Aztfy < Formula
desc "Bring your existing Azure resources under the management of Terraform"
homepage "https://azure.github.io/aztfy"
url "https://github.com/Azure/aztfy.git",
tag: "v0.6.0",
revision: "18b614bb384b1d413554867b8601feb753715575"
license "MPL-2.0"
head "https://github.com/Azure/aztfy.git", branch: "main"
2022-06-25 19:46:21 +00:00
bottle do
2022-07-21 09:05:36 +00:00
sha256 cellar: :any_skip_relocation, arm64_monterey: "79dae50a2d5034ed78479cc512cac7f027335a80657314c8c9d46fb50e6bbe15"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "79dae50a2d5034ed78479cc512cac7f027335a80657314c8c9d46fb50e6bbe15"
sha256 cellar: :any_skip_relocation, monterey: "0c1fbbb4c588cb9e035adada127e107b56f13381a9c34bdefcf212e6c858f3bc"
sha256 cellar: :any_skip_relocation, big_sur: "0c1fbbb4c588cb9e035adada127e107b56f13381a9c34bdefcf212e6c858f3bc"
sha256 cellar: :any_skip_relocation, catalina: "0c1fbbb4c588cb9e035adada127e107b56f13381a9c34bdefcf212e6c858f3bc"
sha256 cellar: :any_skip_relocation, x86_64_linux: "e422b3038399eff6c079156404710063f7a2b9b99e85b88e53abf543035fa77e"
2022-06-25 19:46:21 +00:00
end
depends_on "go" => :build
def install
ENV["CGO_ENABLED"] = "0"
system "go", "build", *std_go_args(ldflags: "-s -w -X 'main.version=v#{version}' -X 'main.revision=#{Utils.git_short_head(length: 7)}'")
end
test do
version_output = shell_output("#{bin}/aztfy -v")
assert_match version.to_s, version_output
no_resource_group_specified_output = shell_output("#{bin}/aztfy rg 2>&1", 1)
assert_match("Error: No resource group specified", no_resource_group_specified_output)
end
end