Module: Mesa Branch: main Commit: 85a8f03211090bc9a23a5fa116f698aef1fd8cea URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=85a8f03211090bc9a23a5fa116f698aef1fd8cea
Author: Eric Engestrom <[email protected]> Date: Mon Jul 17 12:22:17 2023 +0100 ci: delete install.tar after extracting it to avoid re-uploading it Leaving it means it gets re-uploaded when sync'ing the artifacts back from the DUT to GitLab. Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Yonggang Luo <[email protected]> Reviewed-by: David Heidelberg <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24196> --- .gitlab-ci/test/gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/test/gitlab-ci.yml b/.gitlab-ci/test/gitlab-ci.yml index 69c0a0468f2..eeac4a81e4b 100644 --- a/.gitlab-ci/test/gitlab-ci.yml +++ b/.gitlab-ci/test/gitlab-ci.yml @@ -328,7 +328,7 @@ clang-format: [ -d "$CI_COMMON_SCRIPTS" ] || exit 1 - B2C_TEST_SCRIPT="bash -c 'tar xf ${INSTALL_TARBALL_NAME}; ./install/common/init-stage2.sh'" + B2C_TEST_SCRIPT="bash -c 'tar xf ${INSTALL_TARBALL_NAME} && rm ${INSTALL_TARBALL_NAME}; ./install/common/init-stage2.sh'" # The Valve CI gateway receives jobs in a YAML format. Create a # job description from the CI environment.
