From 24e2912b4b6335245f7ddc9b896fe1bc157eb52a Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Mon, 15 Nov 2021 17:34:16 -0800 Subject: [PATCH] jenkins: decrease timeout once tests start running old-commit-hash: 31031a723c265414fa1450a970b453369c6d0575 --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 29edbeb172..64ca4bfa24 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -37,7 +37,7 @@ EOF""" def phone_steps(String device_type, steps) { lock(resource: "", label: device_type, inversePrecedence: true, variable: 'device_ip', quantity: 1) { - timeout(time: 150, unit: 'MINUTES') { + timeout(time: 60, unit: 'MINUTES') { phone(device_ip, "git checkout", readFile("selfdrive/test/setup_device_ci.sh"),) steps.each { item -> phone(device_ip, item[0], item[1]) @@ -53,7 +53,7 @@ pipeline { SOURCE_DIR = "/data/openpilot_source/" } options { - timeout(time: 3, unit: 'HOURS') + timeout(time: 4, unit: 'HOURS') } stages {