Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,11 @@ 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}"
ls -alh ${ARTIFACT_DIR}
ls -alh ${SHARED_DIR}
cp "${ARTIFACT_DIR}/"*.xml "${SHARED_DIR}"
Comment thread
coderabbitai[bot] marked this conversation as resolved.

set -o errexit

Expand Down