From ceb152b754b569647bf0788169ca621b0e50eed7 Mon Sep 17 00:00:00 2001 From: Tiger Kaovilai Date: Tue, 25 Aug 2026 08:53:57 -0400 Subject: [PATCH] Add --ginkgo.junit-report flag to oadp-1.4 test-e2e target oadp-1.4's test-e2e never wrote junit_report.xml to $ARTIFACT_DIR, unlike oadp-1.5/oadp-dev which already pass this flag. Any tooling expecting JUnit results in Prow artifacts for oadp-1.4 (including the new oadp-analyze-e2e-failure CI post-step) was missing that input. Fixes #2410 Signed-off-by: Tiger Kaovilai --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 8d3dabb8d18..3eff407fa34 100644 --- a/Makefile +++ b/Makefile @@ -676,6 +676,7 @@ test-e2e: test-e2e-setup install-ginkgo $(if $(MUST_GATHER_REPO),build-must-gath --ginkgo.vv \ --ginkgo.no-color=$(OPENSHIFT_CI) \ --ginkgo.label-filter="$(TEST_FILTER)" \ + --ginkgo.junit-report="$(ARTIFACT_DIR)/junit_report.xml" \ --ginkgo.timeout=2h .PHONY: test-e2e-cleanup