You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: skip helm chart tests when helm is not installed (#788)
* fix: skip helm chart tests when helm is not installed
Signed-off-by: Vivek Karunai Kiri Ragavan <vkarunai@redhat.com>
* fix: auto-download helm in Makefile when not present
Signed-off-by: Vivek Karunai Kiri Ragavan <vkarunai@redhat.com>
---------
Signed-off-by: Vivek Karunai Kiri Ragavan <vkarunai@redhat.com>
helm: $(HELM)## Download helm locally if necessary.
479
+
$(HELM): $(LOCALBIN)
480
+
@[ -f"$(LOCALBIN)/helm-$(HELM_VERSION)" ] || { \
481
+
set -e;\
482
+
echo"Downloading helm $(HELM_VERSION)";\
483
+
curl -sSfL https://get.helm.sh/helm-$(HELM_VERSION)-$(shell go env GOOS)-$(shell go env GOARCH).tar.gz | tar xz --no-same-owner -C $(LOCALBIN) --strip-components=1 $(shell go env GOOS)-$(shell go env GOARCH)/helm;\
0 commit comments