From 5039fc3dc70baa2f6f1e64a6143e85b924d733c8 Mon Sep 17 00:00:00 2001 From: Emma Anholt Date: Wed, 2 Feb 2022 10:56:34 -0800 Subject: [PATCH] ci/turnip: Extend the full-vk-run job timeouts. Between adding features and increased test coverage, we're hitting the 1-hour job limit. !13441 tried to increase the full run timeout for LAVA, but by having not bumped the gitlab-ci timeout value it ended up just letting the job keep running in LAVA after gitlab had given up on it. Part-of: --- src/freedreno/ci/gitlab-ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/freedreno/ci/gitlab-ci.yml b/src/freedreno/ci/gitlab-ci.yml index 06ef702..4b70861 100644 --- a/src/freedreno/ci/gitlab-ci.yml +++ b/src/freedreno/ci/gitlab-ci.yml @@ -155,9 +155,13 @@ a618_vk_full: extends: - a618_vk - .test-manual-mr + # We use a longer timeout to keep the parallel down so that we don't lock up + # too many runners for a long time when a dev is trying out at full VK status. + timeout: 2h parallel: 2 variables: DEQP_SUITE: freedreno-a618-vk-full + JOB_TIMEOUT: 120 .a630-test: extends: @@ -220,6 +224,9 @@ a630_vk: DEQP_SUITE: freedreno-a630-vk a630_vk_full: + # We use a longer timeout to keep the parallel down so that we don't lock up + # too many runners for a long time when a dev is trying out at full VK status. + timeout: 2h extends: - a630_vk - .test-manual-mr -- 2.7.4