jackett 0.22.1382
[Homebrew/homebrew-core.git] / Formula / r / rancher-cli.rb
bloba4690cbd95f86f44b46c00ffb9590cb1af60ea02
1 class RancherCli < Formula
2   desc "Unified tool to manage your Rancher server"
3   homepage "https://github.com/rancher/cli"
4   url "https://github.com/rancher/cli/archive/refs/tags/v2.10.0.tar.gz"
5   sha256 "d44358847d6f25bb185f79cb1f8ef8b91ba644b29dc2832e593f31b98fd49765"
6   license "Apache-2.0"
7   head "https://github.com/rancher/cli.git", branch: "master"
9   # Upstream creates releases that use a stable tag (e.g., `v1.2.3`) but are
10   # labeled as "pre-release" on GitHub before the version is released, so it's
11   # necessary to use the `GithubLatest` strategy.
12   livecheck do
13     url :stable
14     strategy :github_latest
15   end
17   bottle do
18     sha256 cellar: :any_skip_relocation, arm64_sequoia: "f69c78c8d188ce9f0187dd7b30ae7acb4a679fb73cc1d958401a8522e660796f"
19     sha256 cellar: :any_skip_relocation, arm64_sonoma:  "f69c78c8d188ce9f0187dd7b30ae7acb4a679fb73cc1d958401a8522e660796f"
20     sha256 cellar: :any_skip_relocation, arm64_ventura: "f69c78c8d188ce9f0187dd7b30ae7acb4a679fb73cc1d958401a8522e660796f"
21     sha256 cellar: :any_skip_relocation, sonoma:        "77af6b0df353a12ebfbfc1022a78f47fa7e866114e24a77905a43d7dd839eda1"
22     sha256 cellar: :any_skip_relocation, ventura:       "77af6b0df353a12ebfbfc1022a78f47fa7e866114e24a77905a43d7dd839eda1"
23     sha256 cellar: :any_skip_relocation, x86_64_linux:  "ebb29f7da2a74dcd0508ed9f961bcf75fd69a163436762fe20617d63920067ff"
24   end
26   depends_on "go" => :build
28   def install
29     system "go", "build", *std_go_args(ldflags: "-s -w -X main.VERSION=#{version}", output: bin/"rancher")
30   end
32   test do
33     assert_match "Failed to parse SERVERURL", shell_output("#{bin}/rancher login localhost -t foo 2>&1", 1)
34     assert_match "invalid token", shell_output("#{bin}/rancher login https://127.0.0.1 -t foo 2>&1", 1)
35   end
36 end