homebrew-core/Formula/linkerd.rb
2019-10-14 18:29:17 -04:00

52 lines
1.7 KiB
Ruby

class Linkerd < Formula
desc "Command-line utility to interact with linkerd"
homepage "https://linkerd.io"
url "https://github.com/linkerd/linkerd2.git",
:tag => "stable-2.6.0",
:revision => "1039d82547388f361160b419e30d0b6b2051dc36"
bottle do
cellar :any_skip_relocation
sha256 "743e5e1389c865c8b87aa3a38394bdbd959f3acec51f8b17c3339b1024e2848b" => :catalina
sha256 "7ff94d438b4c8acd6ad236e07da2df4d29993dcbf16e695fcf924259055fa98c" => :mojave
sha256 "247915d7d44b19e9e695c5739eed3ab5ee34027ffbf204c0e9c018179401aa09" => :high_sierra
end
depends_on "go@1.12" => :build
def install
ENV["GOPATH"] = buildpath
ENV["CI_FORCE_CLEAN"] = "1"
srcpath = buildpath/"src/github.com/linkerd/linkerd2"
srcpath.install buildpath.children - [buildpath/".brew_home"]
cd srcpath do
system "bin/build-cli-bin"
bin.install "target/cli/darwin/linkerd"
# Install bash completion
output = Utils.popen_read("#{bin}/linkerd completion bash")
(bash_completion/"linkerd").write output
# Install zsh completion
output = Utils.popen_read("#{bin}/linkerd completion zsh")
(zsh_completion/"linkerd").write output
prefix.install_metafiles
end
end
test do
run_output = shell_output("#{bin}/linkerd 2>&1")
assert_match "linkerd manages the Linkerd service mesh.", run_output
version_output = shell_output("#{bin}/linkerd version --client 2>&1")
assert_match "Client version: ", version_output
stable_resource = stable.instance_variable_get(:@resource)
assert_match stable_resource.instance_variable_get(:@specs)[:tag], version_output if build.stable?
system "#{bin}/linkerd", "install", "--ignore-cluster"
end
end