Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Merge self-upgrade-main into main #103

Merged
merged 1 commit into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions klone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,45 +10,45 @@ targets:
- folder_name: boilerplate
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 2547c81aaa2ff4aeefdda53988191b5cbe929985
repo_hash: f9604e0f1728c59dad941c433a81672080edaf84
repo_path: modules/boilerplate
- folder_name: cert-manager
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 2547c81aaa2ff4aeefdda53988191b5cbe929985
repo_hash: f9604e0f1728c59dad941c433a81672080edaf84
repo_path: modules/cert-manager
- folder_name: executable
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 2547c81aaa2ff4aeefdda53988191b5cbe929985
repo_hash: f9604e0f1728c59dad941c433a81672080edaf84
repo_path: modules/executable
- folder_name: generate-verify
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 2547c81aaa2ff4aeefdda53988191b5cbe929985
repo_hash: f9604e0f1728c59dad941c433a81672080edaf84
repo_path: modules/generate-verify
- folder_name: go
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 2547c81aaa2ff4aeefdda53988191b5cbe929985
repo_hash: f9604e0f1728c59dad941c433a81672080edaf84
repo_path: modules/go
- folder_name: help
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 2547c81aaa2ff4aeefdda53988191b5cbe929985
repo_hash: f9604e0f1728c59dad941c433a81672080edaf84
repo_path: modules/help
- folder_name: klone
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 2547c81aaa2ff4aeefdda53988191b5cbe929985
repo_hash: f9604e0f1728c59dad941c433a81672080edaf84
repo_path: modules/klone
- folder_name: repository-base
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 2547c81aaa2ff4aeefdda53988191b5cbe929985
repo_hash: f9604e0f1728c59dad941c433a81672080edaf84
repo_path: modules/repository-base
- folder_name: tools
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 2547c81aaa2ff4aeefdda53988191b5cbe929985
repo_hash: f9604e0f1728c59dad941c433a81672080edaf84
repo_path: modules/tools
3 changes: 2 additions & 1 deletion make/_shared/tools/00_mod.mk
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,8 @@ $(DOWNLOAD_DIR)/tools/preflight@$(PREFLIGHT_VERSION)_linux_$(HOST_ARCH): | $(DOW
missing=$(shell (command -v curl >/dev/null || echo curl) \
&& (command -v sha256sum >/dev/null || command -v shasum >/dev/null || echo sha256sum) \
&& (command -v git >/dev/null || echo git) \
&& (command -v rsync >/dev/null || echo rsync))
&& (command -v rsync >/dev/null || echo rsync) \
&& (command -v bash >/dev/null || echo bash))
ifneq ($(missing),)
$(error Missing required tools: $(missing))
endif
Expand Down