@@ -84,7 +84,7 @@ cluster-templates-v1beta1: $(KUSTOMIZE)
84
84
85
85
.PHONY : docker-build-and-push
86
86
docker-build-and-push :
87
- d=$$(date +%s ) \
87
+ - d=$$(date +%s ) \
88
88
&& IMG=$(IMG ) $(MAKE ) -C $(REPO_ROOT ) docker-build \
89
89
&& IMG=$(IMG ) $(MAKE ) -C $(REPO_ROOT ) docker-push \
90
90
&& echo " This step took $$ (($$ (date +%s)-d)) seconds"
@@ -99,7 +99,7 @@ e2e-essentials: $(GINKGO) kind-cluster manifests cluster-templates docker-build-
99
99
100
100
.PHONY : run-e2e
101
101
run-e2e : e2e-essentials # # Run End-to-End Tests
102
- d=$$(date +%s ) \
102
+ - d=$$(date +%s ) \
103
103
&& PATH=$(BIN_DIR ) :${PATH} $(GINKGO ) -v -trace -tags=e2e -skip=Conformance -nodes=1 --noColor=false ./... -- \
104
104
-e2e.artifacts-folder=${REPO_ROOT} /_artifacts \
105
105
-e2e.config=${REPO_ROOT} /test/e2e/config/cloudstack.yaml \
@@ -109,7 +109,7 @@ run-e2e: e2e-essentials ## Run End-to-End Tests
109
109
110
110
.PHONY : run-e2e-pr-blocking
111
111
run-e2e-pr-blocking : e2e-essentials # # Run Only End-to-End Tests containing PR-Blocking tag
112
- d=$$(date +%s ) \
112
+ - d=$$(date +%s ) \
113
113
&& PATH=$(BIN_DIR ) :${PATH} $(GINKGO ) -v -trace -tags=e2e -focus=PR-Blocking -skip=Conformance -nodes=1 --noColor=false ./... -- \
114
114
-e2e.artifacts-folder=${REPO_ROOT} /_artifacts \
115
115
-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
119
119
120
120
.PHONY : run-conformance
121
121
run-conformance : e2e-essentials # # Run K8S Conformance Tests
122
- d=$$(date +%s ) \
122
+ - d=$$(date +%s ) \
123
123
&& PATH=$(BIN_DIR ) :${PATH} $(GINKGO ) -v -trace -tags=e2e -focus=Conformance -nodes=1 --noColor=false ./... -- \
124
124
-e2e.artifacts-folder=${REPO_ROOT} /_artifacts \
125
125
-e2e.config=${REPO_ROOT} /test/e2e/config/cloudstack.yaml \
@@ -129,7 +129,7 @@ run-conformance: e2e-essentials ## Run K8S Conformance Tests
129
129
130
130
.PHONY : run-all
131
131
run-all : e2e-essentials # # Run K8S Conformance Tests
132
- d=$$(date +%s ) \
132
+ - d=$$(date +%s ) \
133
133
&& PATH=$(BIN_DIR ) :${PATH} $(GINKGO ) -v -trace -tags=e2e -nodes=1 --noColor=false ./... -- \
134
134
-e2e.artifacts-folder=${REPO_ROOT} /_artifacts \
135
135
-e2e.config=${REPO_ROOT} /test/e2e/config/cloudstack.yaml \
0 commit comments