From fc40946dae3b34be619520d2eb6510977879ab05 Mon Sep 17 00:00:00 2001 From: "Xinwei Xiong(cubxxw-openim)" <3293172751nss@gmail.com> Date: Tue, 18 Jul 2023 15:58:18 +0800 Subject: [PATCH] feat: add tools user Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> --- scripts/make-rules/tools.mk | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/scripts/make-rules/tools.mk b/scripts/make-rules/tools.mk index e268cb264..7fe7305fb 100644 --- a/scripts/make-rules/tools.mk +++ b/scripts/make-rules/tools.mk @@ -130,6 +130,11 @@ install.gsemver: install.git-chglog: @$(GO) install github.com/git-chglog/git-chglog/cmd/git-chglog@latest +## install.ko: Install ko, used to build go program into container images +.PHONY: install.ko +install.ko: + @$(GO) install github.com/google/ko@latest + ## install.github-release: Install github-release, used to create github release .PHONY: install.github-release install.github-release: @@ -149,6 +154,11 @@ install.coscli: install.coscmd: @if which pip &>/dev/null; then pip install coscmd; else pip3 install coscmd; fi +## install.minio: Install minio, used to upload files to minio +.PHONY: install.minio +install.minio: + @$(GO) install github.com/minio/minio@latest + ## install.delve: Install delve, used to debug go program .PHONY: install.delve install.delve: