28 lines
1.1 KiB
Ruby
28 lines
1.1 KiB
Ruby
class Nerdctl < Formula
|
|
desc "ContaiNERD CTL - Docker-compatible CLI for containerd"
|
|
homepage "https://github.com/containerd/nerdctl"
|
|
url "https://github.com/containerd/nerdctl/archive/refs/tags/v0.15.0.tar.gz"
|
|
sha256 "7caf808a271d47ff069875cd49ceed02cf3fd3c0c334df2d89b3a031b0e6d041"
|
|
license "Apache-2.0"
|
|
head "https://github.com/containerd/nerdctl.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "4e1a743a2022cf387cf749926608e90bb8c606e86b9580b05fc0bd6642a2f143"
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
depends_on :linux
|
|
|
|
def install
|
|
ldflags = "-s -w -X github.com/containerd/nerdctl/pkg/version.Version=#{version}"
|
|
system "go", "build", *std_go_args(ldflags: ldflags), "./cmd/nerdctl"
|
|
end
|
|
|
|
test do
|
|
assert_match version.to_s, shell_output("#{bin}/nerdctl --version")
|
|
output = shell_output("XDG_RUNTIME_DIR=/dev/null #{bin}/nerdctl images 2>&1", 1).strip
|
|
cleaned = output.gsub(/\e\[([;\d]+)?m/, "") # Remove colors from output
|
|
assert_match(/^time=.* level=fatal msg="rootless containerd not running.*/m, cleaned)
|
|
end
|
|
end
|