From a96278448a53a91111ee45289b07b91eb6115abd Mon Sep 17 00:00:00 2001 From: Gandalf Date: Fri, 12 Dec 2025 19:21:24 +0100 Subject: [PATCH] Add data-cache-storage tag to CI jobs Restricts jobs to runners with Docker image cache, as the docker-dind image was deleted from registry but cached locally on some runners. Follow-up to 878d8cf5 (remove hived-for-tests tag). --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b9efe18b3..d72a91e17 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -91,6 +91,7 @@ include: when: always # This ensures artifacts are created even if job fails tags: - public-runner-docker + - data-cache-storage # Validate that HAF_COMMIT variable matches both the submodule and include ref validate_haf_commit: @@ -136,6 +137,7 @@ mirrornet-haf-binaries-extraction: - '${BINARY_CACHE_PATH}' tags: - public-runner-docker + - data-cache-storage # helper job just to prepare extended version of production image additionally holding .env file specific to test environment .docker-build-testenv-image: @@ -168,6 +170,7 @@ mirrornet-haf-binaries-extraction: when: always # This ensures artifacts are created even if job fails tags: - public-runner-docker + - data-cache-storage docker-build-blog: extends: .docker_build_template @@ -257,6 +260,7 @@ library_extraction: - '${BINARY_CACHE_PATH}' tags: - public-runner-docker + - data-cache-storage extended_block_log_creation: extends: .extended_block_log_creation @@ -281,6 +285,7 @@ extended_block_log_creation: LD_LIBRARY_PATH: '${BINARY_PATH}' tags: - public-runner-docker + - data-cache-storage block-log-extraction: extends: .docker_image_builder_job_template -- GitLab