homebrew-core/Formula/kyma-cli.rb

30 lines
933 B
Ruby

class KymaCli < Formula
desc "Kyma command-line interface"
homepage "https://kyma-project.io"
url "https://github.com/kyma-project/cli.git",
tag: "1.15.1",
revision: "5513567a73cc8d4104b6965937a15771a066e6ed"
license "Apache-2.0"
head "https://github.com/kyma-project/cli.git"
bottle do
cellar :any_skip_relocation
sha256 "4366d652edb19f7c46454607de15f5eea7092ae0bfb7723fb84cb950b2a4211d" => :catalina
sha256 "a128466fb724f79119318fe080db1f88c591485a4b0c6c4c1ada4aae76bdfd3f" => :mojave
sha256 "04c3120713e92b6ebe1d6aaf07445f514dd282e917da80cc4225093070ef595e" => :high_sierra
end
depends_on "go@1.14" => :build
def install
system "make", "build-darwin"
bin.install "bin/kyma-darwin" => "kyma"
end
test do
touch testpath/"kubeconfig"
assert_match "invalid configuration",
shell_output("#{bin}/kyma install --kubeconfig ./kubeconfig 2>&1", 1)
end
end