summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorzhu733756 <zhu733756@kubesphere.io>2021-12-01 13:26:46 +0800
committerzhu733756 <zhu733756@kubesphere.io>2021-12-21 13:31:26 +0800
commit8fdf7fba1f691d54b3aedf1582824b739c419191 (patch)
treec808ad7512da69d91ea37f9d485a84f558614e87 /Makefile
parentMerge pull request #3441 from gy95/staging_lint (diff)
downloadkubeedge-8fdf7fba1f691d54b3aedf1582824b739c419191.tar.gz
support helm-keadm ci test
Signed-off-by: zhu733756 <zhu733756@kubesphere.io>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 6688d2e62..5b876c5fa 100644
--- a/Makefile
+++ b/Makefile
@@ -268,6 +268,23 @@ keadm_e2e:
tests/e2e/scripts/keadm_e2e.sh
endif
+define HELM_KEADM_E2E_HELP_INFO
+# helm keadm e2e test.
+#
+# Example:
+# make helm_keadm_e2e
+# make helm_keadm_e2e HELP=y
+#
+endef
+.PHONY: helm_keadm_e2e
+ifeq ($(HELP),y)
+helm_keadm_e2e:
+ @echo "HELM_KEADM_E2E_HELP_INFO"
+else
+helm_keadm_e2e:
+ tests/e2e/scripts/helm_keadm_e2e.sh
+endif
+
define CLEAN_HELP_INFO
# Clean up the output of make.
#