Mesa (main): ci/turnip: Extend the full-vk-run job timeouts.

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu Feb 3 23:11:46 UTC 2022


Module: Mesa
Branch: main
Commit: 5039fc3dc70baa2f6f1e64a6143e85b924d733c8
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=5039fc3dc70baa2f6f1e64a6143e85b924d733c8

Author: Emma Anholt <emma at anholt.net>
Date:   Wed Feb  2 10:56:34 2022 -0800

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: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13779>

---

 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 06ef70255e7..4b708610ffa 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



More information about the mesa-commit mailing list