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>
This commit is contained in:
Emma Anholt 2022-04-20 12:35:36 -07:00 committed by Marge Bot
parent b8fd1e8844
commit cfbdbbfcab
1 changed files with 1 additions and 1 deletions

View File

@ -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