mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-11-24 08:32:32 +02:00
Launch additional thread informing from time to time about still running integration tests.
This commit is contained in:
parent
0a6064745c
commit
78dbbb751d
@ -5,6 +5,9 @@ WORKSPACES_ROOT=workspaces
|
||||
|
||||
TEST_CASES=$(find testCases -name '*.yml')
|
||||
|
||||
while true; do sleep 10; echo "[INFO] Integration tests still running."; done &
|
||||
notificationThreadPid=$!
|
||||
|
||||
i=0
|
||||
for f in ${TEST_CASES}
|
||||
do
|
||||
@ -37,6 +40,8 @@ do
|
||||
echo "[INFO] <END> Logs for test case \"${testCase}\"."
|
||||
done
|
||||
|
||||
kill -PIPE "${notificationThreadPid}" &>/dev/null
|
||||
|
||||
#
|
||||
# list test case status
|
||||
echo "[INFO] Build status:"
|
||||
|
Loading…
Reference in New Issue
Block a user