From e833589acfd7b6abde68b459e4a9633aadb2d443 Mon Sep 17 00:00:00 2001 From: Daniel Stone Date: Tue, 3 Sep 2024 10:25:04 +0100 Subject: [PATCH] ci/windows: Don't upload shader cache to artifacts We don't need to keep this, and it only makes the upload slower. Signed-off-by: Daniel Stone Part-of: --- .gitlab-ci/windows/deqp_runner_run.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci/windows/deqp_runner_run.ps1 b/.gitlab-ci/windows/deqp_runner_run.ps1 index 136cf8e3770..53d708ecdf1 100644 --- a/.gitlab-ci/windows/deqp_runner_run.ps1 +++ b/.gitlab-ci/windows/deqp_runner_run.ps1 @@ -31,6 +31,7 @@ $template = "See $($env:ARTIFACTS_BASE_URL)/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) +Remove-Item -Path "$($results)/*.shader_cache" if (!$deqpstatus) { Exit 1