File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ SKIP_CREATE_MGMT_CLUSTER ?= false
171
171
172
172
# Run the end-to-end tests
173
173
.PHONY : test-e2e
174
- test-e2e : $(KUBECTL ) $( GINKGO ) $(KUSTOMIZE ) $(ENVSUBST ) set-flavor e2e-image
174
+ test-e2e : $(GINKGO ) $(KUSTOMIZE ) $(ENVSUBST ) set-flavor e2e-image
175
175
$(ENVSUBST ) < $(E2E_CONF_FILE ) > $(E2E_CONF_FILE_ENVSUBST )
176
176
$(GINKGO ) $(GINKGO_ARGS ) ./test/e2e -- \
177
177
-e2e.artifacts-folder=" $( ARTIFACTS) " \
Original file line number Diff line number Diff line change @@ -20,9 +20,13 @@ set -o pipefail
20
20
21
21
REPO_ROOT=$( dirname " ${BASH_SOURCE[0]} " ) /..
22
22
cd " ${REPO_ROOT} " || exit 1
23
+ GOPATH_BIN=" $( go env GOPATH) /bin/"
24
+ export PATH=" ${GOPATH_BIN} :${PATH} "
23
25
24
26
# shellcheck source=../hack/ensure-go.sh
25
27
source " ${REPO_ROOT} /hack/ensure-go.sh"
28
+ # shellcheck source=../hack/ensure-kubectl.sh
29
+ source " ${REPO_ROOT} /hack/ensure-kubectl.sh"
26
30
27
31
ARTIFACTS=" ${ARTIFACTS:- ${PWD} / _artifacts} "
28
32
mkdir -p " ${ARTIFACTS} /logs/"
You can’t perform that action at this time.
0 commit comments