From 51b53ae2a0cdae544031a2ef2375cb6655b3e851 Mon Sep 17 00:00:00 2001 From: Filip Brychta Date: Mon, 29 Jun 2026 10:00:38 +0200 Subject: [PATCH] Copy only xml files as there is a 1MB limit for SHARED_DIR --- .../e2e-ocp/servicemesh-sail-operator-e2e-ocp-commands.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci-operator/step-registry/servicemesh/sail-operator/e2e-ocp/servicemesh-sail-operator-e2e-ocp-commands.sh b/ci-operator/step-registry/servicemesh/sail-operator/e2e-ocp/servicemesh-sail-operator-e2e-ocp-commands.sh index 319c0683aa035..d6d314ffc6742 100644 --- a/ci-operator/step-registry/servicemesh/sail-operator/e2e-ocp/servicemesh-sail-operator-e2e-ocp-commands.sh +++ b/ci-operator/step-registry/servicemesh/sail-operator/e2e-ocp/servicemesh-sail-operator-e2e-ocp-commands.sh @@ -166,9 +166,9 @@ execute_and_collect_artifacts() { echo "Copying artifacts from test pod after attempt ${attempt}..." oc cp "${MAISTRA_NAMESPACE}"/"${MAISTRA_SC_POD}":"${ARTIFACT_DIR}"/. "${ARTIFACT_DIR}" - # share artifacts with next job step which is uploading results to report portal + # share artifacts with next job step which is uploading results to report portal, use only xml files as there is a 1MB limit echo "Copying artifacts to SHARED_DIR after attempt ${attempt}..." - cp "${ARTIFACT_DIR}/"* "${SHARED_DIR}" + cp "${ARTIFACT_DIR}/"*.xml "${SHARED_DIR}" set -o errexit