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 <daniels@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30993>
This commit is contained in:
Daniel Stone
2024-09-03 10:25:04 +01:00
committed by Marge Bot
parent d7680bb284
commit e833589acf

View File

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