homebrew-core/Formula/copilot.rb

46 lines
1.5 KiB
Ruby

require "language/node"
class Copilot < Formula
desc "CLI tool for Amazon ECS and AWS Fargate"
homepage "https://github.com/aws/copilot-cli/wiki"
url "https://github.com/aws/copilot-cli.git",
tag: "v0.7.0",
revision: "36f93377216f402f725eea1ed0f748617838ca3d"
license "Apache-2.0"
head "https://github.com/aws/copilot-cli.git"
bottle do
cellar :any_skip_relocation
sha256 "9eb24f7262a3af594822b28b348fe0d930bab8c7d7bdee14dfbf16b304b0882c" => :big_sur
sha256 "f2ccf304b42024b80b718d6e96e6e52fbcb4b7b3643a983df65f4ffaed838ae6" => :catalina
sha256 "776bbf894d17541b9a7906bee60658de7c9e3f07a150237f31d65ea0abfc3a05" => :mojave
end
depends_on "go" => :build
depends_on "node" => :build
def install
Language::Node.setup_npm_environment
system "make", "tools"
system "make", "package-custom-resources"
system "make", "build"
bin.install "bin/local/copilot"
output = Utils.safe_popen_read({ "SHELL" => "bash" }, "#{bin}/copilot", "completion", "bash")
(bash_completion/"copilot").write output
output = Utils.safe_popen_read({ "SHELL" => "zsh" }, "#{bin}/copilot", "completion", "zsh")
(zsh_completion/"_copilot").write output
end
test do
assert_match "Welcome to the Copilot CLI! We're going to walk you through some questions",
shell_output("#{bin}/copilot init 2>&1", 1)
assert_match "list environments for application : MissingRegion: could not find region",
shell_output("#{bin}/copilot pipeline init 2>&1", 1)
end
end