homebrew-core/Formula/nerdctl.rb

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.17.0.tar.gz"
sha256 "581e0c91313dcbd0011412a7a026fa5f811ba39eaee4b45a616885fcacd7f8c7"
license "Apache-2.0"
head "https://github.com/containerd/nerdctl.git", branch: "master"
bottle do
sha256 cellar: :any_skip_relocation, x86_64_linux: "1b496e12e3e84d4fec82f20c04f44a3cc3956980bf0d15dbe19a7f9dcc804bb6"
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