diff options
author | Loys Ollivier <lollivier@baylibre.com> | 2017-11-15 10:06:14 +0100 |
---|---|---|
committer | Loys Ollivier <lollivier@baylibre.com> | 2017-11-15 10:06:14 +0100 |
commit | c912a72cbef86b2fbca84d13571ad0c7b56bad0b (patch) | |
tree | b3be6cc4643d84533a1df14986071c1def103709 /jjb | |
parent | c2870939ba99d56bafe7cac780c1274cbf04839c (diff) |
jjb/common: lava-jobs-submit: remove timeout
Remove the timeout from lava submit jobs.
The previous version would timeout after 5 minutes but this is not enough
if the job is qeued. Let Jenkins handle the timeout and remove that one.
Change-Id: I501a539020174b2c9e030716717f1d3d0b06e539
Signed-off-by: Loys Ollivier <lollivier@baylibre.com>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/common/include-agl-lava-jobs-submit.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/common/include-agl-lava-jobs-submit.sh b/jjb/common/include-agl-lava-jobs-submit.sh index c9f79e00..be2830ac 100644 --- a/jjb/common/include-agl-lava-jobs-submit.sh +++ b/jjb/common/include-agl-lava-jobs-submit.sh @@ -41,9 +41,9 @@ for device_type in $device_types; do job_id=$(grep "submitted as job:" $JOB_STATUS | sed 's/.*\/\([0-9]*$\)/\1/') # - # LAVA wait job events, wait for job to finish or timeout (300 seconds) + # LAVA wait job events, wait for job to finish # - lava-tool wait-job-events --job-id $job_id --timeout 300 $full_url + lava-tool wait-job-events --job-id $job_id $full_url # # LAVA job details, get job status from lava-tool output |