Mesa (main): ci/dzn: Cut the runtime by running 1/3 of the enabled tests.

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Apr 20 23:20:10 UTC 2022


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

Author: Emma Anholt <emma at anholt.net>
Date:   Wed Apr 20 12:35:36 2022 -0700

ci/dzn: Cut the runtime by running 1/3 of the enabled tests.

Marge jobs are failing at their 1 hour timeout regularly because windows
CI lacks capacity.  In the job I looked at, this test took 18 minutes,
which is surely contributing to the load.  Cut it down to get us some hope
of getting MRs through that run windows jobs.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16062>

---

 .gitlab-ci/windows/deqp_runner_run.ps1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci/windows/deqp_runner_run.ps1 b/.gitlab-ci/windows/deqp_runner_run.ps1
index 8e32a63faf8..30d7be24300 100644
--- a/.gitlab-ci/windows/deqp_runner_run.ps1
+++ b/.gitlab-ci/windows/deqp_runner_run.ps1
@@ -25,7 +25,7 @@ deqp-runner run --deqp $($deqp_module) --output $($results) --caselist $($caseli
 $deqpstatus = $?
 
 $template = "See https://$($env:CI_PROJECT_ROOT_NAMESPACE).pages.freedesktop.org/-/$($env:CI_PROJECT_NAME)/-/jobs/$($env:CI_JOB_ID)/artifacts/results/{{testcase}}.xml"
-deqp-runner junit --testsuite dEQP --results "$($results)/failures.csv" --output "$($results)/junit.xml" --limit 50 --template $template
+deqp-runner junit --testsuite dEQP --results "$($results)/failures.csv" --output "$($results)/junit.xml" --fraction 3 --limit 50 --template $template
 
 if (!$deqpstatus) {
     Exit 1



More information about the mesa-commit mailing list