From 009a62912ee16a13577032f3c385c47df12d891a Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Thu, 28 Apr 2022 22:02:32 -0700 Subject: [PATCH] jenkins: reduce timeout to 20 minutes old-commit-hash: ef7ece408a932ae724cadd108e523d0e4a7cef94 --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index aa73ccfc49..c5edda56fd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,7 +30,7 @@ END""" def phone_steps(String device_type, steps) { lock(resource: "", label: device_type, inversePrecedence: true, variable: 'device_ip', quantity: 1) { - timeout(time: 60, unit: 'MINUTES') { + timeout(time: 20, unit: 'MINUTES') { phone(device_ip, "git checkout", readFile("selfdrive/test/setup_device_ci.sh"),) steps.each { item -> phone(device_ip, item[0], item[1]) @@ -46,7 +46,7 @@ pipeline { SOURCE_DIR = "/data/openpilot_source/" } options { - timeout(time: 4, unit: 'HOURS') + timeout(time: 4, unit: 'HOURS') } stages {