fix(perpatch): Do not save non-essential files 39/43839/1
authorVratko Polak <[email protected]>
Mon, 6 Oct 2025 11:08:23 +0000 (13:08 +0200)
committerVratko Polak <[email protected]>
Mon, 6 Oct 2025 11:08:23 +0000 (13:08 +0200)
We already delete output.xml, nobody needs report.html.

Change-Id: I39f70549e802a0d897634907dda335913f0005e3
Signed-off-by: Vratko Polak <[email protected]>
resources/libraries/bash/function/per_patch.sh

index 745cf33..b40c54b 100644 (file)
@@ -222,7 +222,7 @@ function move_test_results () {
     cd "${VPP_DIR}" || die "Change directory command failed."
     TARGET="$(readlink -f "$1")"
     mkdir -p "${TARGET}" || die "Directory creation failed."
-    file_list=("output.xml" "log.html" "report.html" "tests")
+    file_list=("log.html" "tests")
     for filename in "${file_list[@]}"; do
         mv "${ARCHIVE_DIR}/${filename}" "${TARGET}/${filename}" || die
     done