54 lines
1.9 KiB
Ruby
54 lines
1.9 KiB
Ruby
class Fluxctl < Formula
|
|
desc "Command-line tool to access Weave Flux, the Kubernetes GitOps operator"
|
|
homepage "https://github.com/weaveworks/flux"
|
|
url "https://github.com/weaveworks/flux.git",
|
|
:tag => "1.14.1",
|
|
:revision => "c76e388cca59a1b1cbd5dd749f70e9c87a57031f"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "bf532fd7ae98a29cfdaf7526eddb9c9fab77352886fd4567b8bac2f46153984b" => :mojave
|
|
sha256 "599dda77e105893524eb24e38fc746b658a61ed0f26300dc50b0518309762370" => :high_sierra
|
|
sha256 "cd116996459352561b5545f241b499c7ee76f4c2799160bf8b44fa51ceadf1db" => :sierra
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
ENV["GO111MODULE"] = "on"
|
|
|
|
dir = buildpath/"src/github.com/weaveworks/flux"
|
|
dir.install buildpath.children
|
|
|
|
cd dir/"cmd/fluxctl" do
|
|
system "go", "build", "-ldflags", "-X main.version=#{version}", "-o", bin/"fluxctl"
|
|
prefix.install_metafiles
|
|
end
|
|
end
|
|
|
|
test do
|
|
run_output = shell_output("#{bin}/fluxctl 2>&1")
|
|
assert_match "fluxctl helps you deploy your code.", run_output
|
|
|
|
version_output = shell_output("#{bin}/fluxctl version 2>&1")
|
|
assert_match version.to_s, version_output
|
|
|
|
# As we can't bring up a Kubernetes cluster in this test, we simply
|
|
# run "fluxctl sync" and check that it 1) errors out, and 2) complains
|
|
# about a missing .kube/config file.
|
|
require "pty"
|
|
require "timeout"
|
|
r, _w, pid = PTY.spawn("#{bin}/fluxctl sync", :err=>:out)
|
|
begin
|
|
Timeout.timeout(5) do
|
|
assert_match r.gets.chomp, "Error: Could not load kubernetes configuration file: invalid configuration: no configuration has been provided"
|
|
Process.wait pid
|
|
assert_equal 1, $CHILD_STATUS.exitstatus
|
|
end
|
|
rescue Timeout::Error
|
|
puts "process not finished in time, killing it"
|
|
Process.kill("TERM", pid)
|
|
end
|
|
end
|
|
end
|