From 3e05307beecfd7ddf239276eb79fef8e0cf9a0d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Roukala=20=28n=C3=A9=20Peres=29?= Date: Fri, 31 Jan 2025 05:45:27 +0200 Subject: [PATCH] ci/test/b2c: do not download the debian/*_test-(gl|vk) artifacts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There are no artifacts there that we need, so let's not waste time making requests to GitLab. Signed-off-by: Martin Roukala (né Peres) Part-of: --- .gitlab-ci/test/gitlab-ci.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci/test/gitlab-ci.yml b/.gitlab-ci/test/gitlab-ci.yml index c35cd7b6cb3..535f3bb7f56 100644 --- a/.gitlab-ci/test/gitlab-ci.yml +++ b/.gitlab-ci/test/gitlab-ci.yml @@ -417,7 +417,8 @@ yaml-toml-shell-py-test: - .use-debian/x86_64_test-vk - .b2c-x86_64-test needs: - - debian/x86_64_test-vk + - job: debian/x86_64_test-vk + artifacts: false - debian-testing - !reference [.required-for-hardware-jobs, needs] @@ -435,7 +436,8 @@ yaml-toml-shell-py-test: - .use-debian/x86_64_test-gl - .b2c-x86_64-test needs: - - debian/x86_64_test-gl + - job: debian/x86_64_test-gl + artifacts: false - debian-testing - !reference [.required-for-hardware-jobs, needs] @@ -444,7 +446,8 @@ yaml-toml-shell-py-test: - .use-debian/x86_64_test-gl - .b2c-x86_64-test needs: - - debian/x86_64_test-gl + - job: debian/x86_64_test-gl + artifacts: false - debian-build-testing - !reference [.required-for-hardware-jobs, needs] @@ -460,7 +463,8 @@ yaml-toml-shell-py-test: - .use-debian/arm64_test-vk - .b2c-arm64-test needs: - - debian/arm64_test-vk + - job: debian/arm64_test-vk + artifacts: false - debian-arm64 - !reference [.required-for-hardware-jobs, needs] @@ -469,6 +473,7 @@ yaml-toml-shell-py-test: - .use-debian/arm64_test-gl - .b2c-arm64-test needs: - - debian/arm64_test-gl + - job: debian/arm64_test-gl + artifacts: false - debian-arm64 - !reference [.required-for-hardware-jobs, needs]