diff options
author | Cristian Ciocaltea <cristian.ciocaltea@collabora.com> | 2022-01-24 14:47:12 +0200 |
---|---|---|
committer | Cristian Ciocaltea <cristian.ciocaltea@collabora.com> | 2022-02-16 19:06:14 +0200 |
commit | 3203c79964e74ad0ce6d609f79741a9872111ff6 (patch) | |
tree | 9e2ca61b89678261d5f2c861233a3d18519f6ae8 /.gitlab-ci | |
parent | 49d5965c9659a37a5be5a7a92d60b0224b01c9f4 (diff) |
ci: Make virtio-gpu test results available in the artifacts
Because the tests run using the Mesa CI infrastructure, the results
folder is created in a Mesa project specific location and it is
necessary to move it to CI_PROJECT_DIR once completed.
This operation has been performed only for the vtest based jobs, hence
let's ensure it is always executed.
Signed-off-by: Cristian Ciocaltea <cristian.ciocaltea@collabora.com>
Reviewed-by: Guilherme Gallo <guilherme.gallo@collabora.com>
Acked-by: Daniel Stone <daniels@collabora.com>
Diffstat (limited to '.gitlab-ci')
-rwxr-xr-x | .gitlab-ci/container/debian/x86_test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci/container/debian/x86_test.sh b/.gitlab-ci/container/debian/x86_test.sh index fef37d2..ff81f72 100755 --- a/.gitlab-ci/container/debian/x86_test.sh +++ b/.gitlab-ci/container/debian/x86_test.sh @@ -95,7 +95,7 @@ else fi RET=$? - mv -f results ${CI_PROJECT_DIR}/ fi +mv -f results ${CI_PROJECT_DIR}/ exit ${RET} |