Module: Mesa Branch: main Commit: e8511d5adbab3d5244c8ad3b3833ede5ec9b5927 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=e8511d5adbab3d5244c8ad3b3833ede5ec9b5927
Author: Emma Anholt <[email protected]> Date: Mon Oct 2 10:15:06 2023 -0700 ci/docker: Clear the results file before starting a new deqp test run. crocus-hsw was failing because results.csv.zst was left around in the results dir, and then zstd -o complained. We shouldn't be uploading stale results files, anyway, so do an rm -rf first to clean up when the docker container gets reused. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25509> --- .gitlab-ci/test/gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci/test/gitlab-ci.yml b/.gitlab-ci/test/gitlab-ci.yml index cc8ebbe12d4..50cd20c227b 100644 --- a/.gitlab-ci/test/gitlab-ci.yml +++ b/.gitlab-ci/test/gitlab-ci.yml @@ -154,6 +154,7 @@ clang-format: .deqp-test: script: + - rm -rf results # Clear out old results if the docker container was cached - ./install/deqp-runner.sh artifacts: exclude:
