Skip to content

Commit 22fbf01

Browse files
committed
Continue on error from docker-build-and-push and e2e targets
1 parent 964d9f1 commit 22fbf01

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/e2e/Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ cluster-templates-v1beta1: $(KUSTOMIZE)
8484

8585
.PHONY: docker-build-and-push
8686
docker-build-and-push:
87-
d=$$(date +%s) \
87+
-d=$$(date +%s) \
8888
&& IMG=$(IMG) $(MAKE) -C $(REPO_ROOT) docker-build \
8989
&& IMG=$(IMG) $(MAKE) -C $(REPO_ROOT) docker-push \
9090
&& echo "This step took $$(($$(date +%s)-d)) seconds"
@@ -99,7 +99,7 @@ e2e-essentials: $(GINKGO) kind-cluster manifests cluster-templates docker-build-
9999

100100
.PHONY: run-e2e
101101
run-e2e: e2e-essentials ## Run End-to-End Tests
102-
d=$$(date +%s) \
102+
-d=$$(date +%s) \
103103
&& PATH=$(BIN_DIR):${PATH} $(GINKGO) -v -trace -tags=e2e -skip=Conformance -nodes=1 --noColor=false ./... -- \
104104
-e2e.artifacts-folder=${REPO_ROOT}/_artifacts \
105105
-e2e.config=${REPO_ROOT}/test/e2e/config/cloudstack.yaml \
@@ -109,7 +109,7 @@ run-e2e: e2e-essentials ## Run End-to-End Tests
109109

110110
.PHONY: run-e2e-pr-blocking
111111
run-e2e-pr-blocking: e2e-essentials ## Run Only End-to-End Tests containing PR-Blocking tag
112-
d=$$(date +%s) \
112+
-d=$$(date +%s) \
113113
&& PATH=$(BIN_DIR):${PATH} $(GINKGO) -v -trace -tags=e2e -focus=PR-Blocking -skip=Conformance -nodes=1 --noColor=false ./... -- \
114114
-e2e.artifacts-folder=${REPO_ROOT}/_artifacts \
115115
-e2e.config=${REPO_ROOT}/test/e2e/config/cloudstack.yaml \
@@ -119,7 +119,7 @@ run-e2e-pr-blocking: e2e-essentials ## Run Only End-to-End Tests containing PR-B
119119

120120
.PHONY: run-conformance
121121
run-conformance: e2e-essentials ## Run K8S Conformance Tests
122-
d=$$(date +%s) \
122+
-d=$$(date +%s) \
123123
&& PATH=$(BIN_DIR):${PATH} $(GINKGO) -v -trace -tags=e2e -focus=Conformance -nodes=1 --noColor=false ./... -- \
124124
-e2e.artifacts-folder=${REPO_ROOT}/_artifacts \
125125
-e2e.config=${REPO_ROOT}/test/e2e/config/cloudstack.yaml \
@@ -129,7 +129,7 @@ run-conformance: e2e-essentials ## Run K8S Conformance Tests
129129

130130
.PHONY: run-all
131131
run-all: e2e-essentials ## Run K8S Conformance Tests
132-
d=$$(date +%s) \
132+
-d=$$(date +%s) \
133133
&& PATH=$(BIN_DIR):${PATH} $(GINKGO) -v -trace -tags=e2e -nodes=1 --noColor=false ./... -- \
134134
-e2e.artifacts-folder=${REPO_ROOT}/_artifacts \
135135
-e2e.config=${REPO_ROOT}/test/e2e/config/cloudstack.yaml \

0 commit comments

Comments
 (0)