Skip to content

Commit ed217e7

Browse files
authored
chore: change to use explicit kustomize path (#122)
Signed-off-by: Richard Case <richard.case@outlook.com>
1 parent 1cb395b commit ed217e7

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/e2e.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
name: E2E tests
22
on:
3+
schedule:
4+
- cron: '0 1 * * *'
35
workflow_dispatch:
46

57
jobs:

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,8 +360,8 @@ SKIP_CLEANUP ?= false
360360
SKIP_CREATE_MGMT_CLUSTER ?= false
361361

362362
.PHONY: test-e2e-run
363-
test-e2e-run: $(GINKGO) e2e-image ## Run the end-to-end tests
364-
time $(GINKGO) -v --trace -poll-progress-after=$(GINKGO_POLL_PROGRESS_AFTER) -poll-progress-interval=$(GINKGO_POLL_PROGRESS_INTERVAL) \
363+
test-e2e-run: $(GINKGO) $(KUSTOMIZE) e2e-image ## Run the end-to-end tests
364+
CAPI_KUSTOMIZE_PATH="$(KUSTOMIZE)" time $(GINKGO) -v --trace -poll-progress-after=$(GINKGO_POLL_PROGRESS_AFTER) -poll-progress-interval=$(GINKGO_POLL_PROGRESS_INTERVAL) \
365365
--tags=e2e --focus="$(GINKGO_FOCUS)" -skip="$(GINKGO_SKIP)" --nodes=$(GINKGO_NODES) --no-color=$(GINKGO_NOCOLOR) \
366366
--timeout=$(GINKGO_TIMEOUT) --output-dir="$(ARTIFACTS)" --junit-report="junit.e2e_suite.1.xml" $(GINKGO_ARGS) ./test/e2e -- \
367367
-e2e.artifacts-folder="$(ARTIFACTS)" \

0 commit comments

Comments
 (0)