aboutsummaryrefslogtreecommitdiffstats
path: root/jjb/common/include-agl-lava-jobs-submit.sh
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2020-07-21 11:21:30 +0000
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2020-07-21 11:21:30 +0000
commit173409bf67a5bc20cef4a58ab4e289d28765e76d (patch)
tree592041e5d8b8283768349671bea1d0ea225b2551 /jjb/common/include-agl-lava-jobs-submit.sh
parentd212724c5b1fbf323b71ad09ca2d069b15b27995 (diff)
Revert "SPEC-3004: resubmit failling jobs for rpi4"
This reverts commit d212724c5b1fbf323b71ad09ca2d069b15b27995. Reason for revert: this broke other target boards result evaluation. Change-Id: I01ddd2b6790eedd767e34630ba587ad507a3d8d0
Diffstat (limited to 'jjb/common/include-agl-lava-jobs-submit.sh')
-rw-r--r--jjb/common/include-agl-lava-jobs-submit.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/jjb/common/include-agl-lava-jobs-submit.sh b/jjb/common/include-agl-lava-jobs-submit.sh
index f21c6ac6..912487dc 100644
--- a/jjb/common/include-agl-lava-jobs-submit.sh
+++ b/jjb/common/include-agl-lava-jobs-submit.sh
@@ -36,12 +36,6 @@ if [ $? -ne 0 ]; then
echo "ERROR: job submission error"
exit 123
fi
-
-# check if the job ends
-# resend the jobs in some error case
-# arg1 is the retry count
-wait_jobs() {
-retrycount=$1
# Printing the job URL in the log
echo "THe job id is: ${job_id}"
JOB_URL="${url}scheduler/job/${job_id}"
@@ -60,27 +54,7 @@ state=$(grep ^state: $JOB_STATUS| cut -d' ' -f2)
if [ "$state" == "Finished" ]; then
status=$(grep ^health: $JOB_STATUS| cut -d' ' -f2)
echo "LAVA job $job_id completed with status: $status"
- # Check for resend RPI4
- grep -q 'bcm2711-rpi-4-b' $JOB_STATUS
- if [ $? -eq 0 ];then
- if [ "$status" == 'Incomplete' ];then
- if [ $retrycount -ge 1 ];then
- # resubmit the jobs, overwritting the job_id
- job_id=$(lavacli -i $lab jobs submit $JOB_FILE_NEW)
- if [ $? -ne 0 ]; then
- echo "ERROR: job submission error"
- return 1
- fi
- wait_jobs $(($retrycount-1))
- else
- echo "INFO: too many retries"
- fi
- fi
- fi
fi
-}
-
-wait_jobs 2
echo "####"
echo "#### Start: Output from LAVA job $job_id ####"