summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorJesse Natalie <jenatali@microsoft.com>2023-04-21 14:13:42 -0700
committerMarge Bot <emma+marge@anholt.net>2023-04-25 15:36:01 +0000
commitbc8f7c53af7ac0ea84574eb544bcdae76db7bfc7 (patch)
treeae7c974446f73e379a809ad4956eb965703e35ae /.gitlab-ci
parentd34ac0a70b705963b7d4f09aedebdfc66e8a2956 (diff)
downloadmesa-bc8f7c53af7ac0ea84574eb544bcdae76db7bfc7.tar.gz
ci/dzn: Run almost the full CTS
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22639>
Diffstat (limited to '.gitlab-ci')
-rw-r--r--.gitlab-ci/windows/deqp_runner_run.ps110
1 files changed, 9 insertions, 1 deletions
diff --git a/.gitlab-ci/windows/deqp_runner_run.ps1 b/.gitlab-ci/windows/deqp_runner_run.ps1
index efdf619cf2f..42df3c09f3c 100644
--- a/.gitlab-ci/windows/deqp_runner_run.ps1
+++ b/.gitlab-ci/windows/deqp_runner_run.ps1
@@ -13,10 +13,18 @@ $jobs = ""
if ($null -ne $env:FDO_CI_CONCURRENT) {
$jobs = "--jobs", "$($env:FDO_CI_CONCURRENT)"
}
+if ($env:DEQP_FRACTION -eq $null) {
+ $env:DEQP_FRACTION = 1
+}
$env:DZN_DEBUG = "warp"
$env:MESA_VK_IGNORE_CONFORMANCE_WARNING = "true"
-deqp-runner suite --suite $($suite) --output $($results) --baseline $($baseline) --testlog-to-xml C:\deqp\executor\testlog-to-xml.exe $jobs --fraction 3
+deqp-runner suite --suite $($suite) `
+--output $($results) `
+--baseline $($baseline) `
+--testlog-to-xml C:\deqp\executor\testlog-to-xml.exe `
+--fraction $env:DEQP_FRACTION `
+$jobs
$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"