From cfbdbbfcab32ce0cadc5f5ad7058a6a0e6d3c258 Mon Sep 17 00:00:00 2001 From: Emma Anholt Date: Wed, 20 Apr 2022 12:35:36 -0700 Subject: [PATCH] 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: --- .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