zink/ci: increase piglit and deqp-runner timeouts

A bunch of tests are currently taking ~60 seconds, dangerously close to
the current 60 seconds timeout. Add some congesion or just bad luck to
a runner, or some other background-task, and we can very easily be
pushed above that.

Since we're rendering on LLVMpipe rather than HW, this isn't as
unreasonable as it might sound at first. So let's copy a trick from
VirGL's CI playbook, and bump the timeout to 180 seconds, three times
of what we currently use.

That might seem a bit excessive, but it's better to make it *very*
unlikely to cause trouble than a little bit unlikely.

Acked-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Acked-by: Daniel Stone <daniels@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11272>
This commit is contained in:
Erik Faye-Lund 2021-06-09 17:56:19 +02:00 committed by Marge Bot
parent 890f96c0e6
commit f34ff03702
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@
GALLIUM_DRIVER: "zink" # move here due to bad xvfb-run interactions
VK_DRIVER: lvp # Don't move to the top level, piglit runs do funny stuff with VK_DRIVER set
DEQP_EXPECTED_RENDERER: "zink.*llvmpipe"
DEQP_RUNNER_OPTIONS: "--timeout 180"
zink-piglit-quick_gl:
extends:
@ -26,6 +27,7 @@ zink-piglit-quick_gl:
variables:
PIGLIT_PROFILES: quick_gl
PIGLIT_NO_WINDOW: 1
PIGLIT_RUNNER_OPTIONS: "--timeout 180"
script:
- xvfb-run --server-args='-noreset' sh -c "GALLIUM_DRIVER=zink VK_DRIVER=lvp install/piglit/piglit-runner.sh"