File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -59,5 +59,12 @@ if errorlevel 1 (
59
59
REM DO NOT EXIT and DO NOT SET EXIT_CODE to 1
60
60
)
61
61
62
+ echo " Copying TestResults\* to Root\"
63
+ for /r TestResults %x in (*.xml) do copy "% x" out
64
+ echo " Copying artifacts/logs to %HELIX_WORKITEM_UPLOAD_ROOT% /../"
65
+ shopt -s globstar
66
+ for /r artifacts\log %x in (*.xml) do copy "% x" %HELIX_WORKITEM_UPLOAD_ROOT% \..\
67
+ for /r artifacts\log %x in (*.xml) do copy "% x" %HELIX_WORKITEM_UPLOAD_ROOT% \
68
+
62
69
exit /b %exit_code%
63
70
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
30
30
# Used by SkipOnHelix attribute
31
31
export helix=" $helix_queue_name "
32
32
33
-
34
33
RESET=" \033[0m"
35
34
RED=" \033[0;31m"
36
35
YELLOW=" \033[0;33m"
@@ -109,6 +108,8 @@ if [ $? != 0 ]; then
109
108
# DO NOT EXIT
110
109
fi
111
110
111
+ echo " Copying TestResults/* to Root/"
112
+ cp TestResults/* .
112
113
echo " Copying artifacts/logs to $HELIX_WORKITEM_UPLOAD_ROOT /../"
113
114
shopt -s globstar
114
115
cp artifacts/log/** /* .log $HELIX_WORKITEM_UPLOAD_ROOT /../
You can’t perform that action at this time.
0 commit comments