From c81016f53c9745cf78a1c5133413bc67359b1e9b Mon Sep 17 00:00:00 2001 From: Boris Brezillon Date: Fri, 24 Jun 2022 05:17:22 -0700 Subject: [PATCH] ci/dzn: Copy testlog.{css,xsl} to the result dir Reviewed-by: Jesse Natalie Part-of: --- .gitlab-ci/windows/deqp_runner_run.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci/windows/deqp_runner_run.ps1 b/.gitlab-ci/windows/deqp_runner_run.ps1 index e940fee0462..190b11784a9 100644 --- a/.gitlab-ci/windows/deqp_runner_run.ps1 +++ b/.gitlab-ci/windows/deqp_runner_run.ps1 @@ -23,6 +23,8 @@ $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 +Copy-Item -Path "C:\deqp\testlog.css" -Destination $($results) +Copy-Item -Path "C:\deqp\testlog.xsl" -Destination $($results) if (!$deqpstatus) { Exit 1