From 067a003b221082df1c0e1e49310a6dee05830a9c Mon Sep 17 00:00:00 2001 From: Dan Notestein Date: Tue, 2 Dec 2025 17:32:28 -0500 Subject: [PATCH] Add hived tag to build jobs for proper build concurrency The hived tag routes to runners with limit=1 to prevent OOM issues during memory-intensive hived builds. Added to: - prepare_haf_image - .docker-base-build-template - build_and_publish_image --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ca2e42df..2d3dff73 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -80,6 +80,7 @@ prepare_haf_image: tags: - public-runner-docker - hived-for-tests + - hived prepare_haf_data: extends: .prepare_haf_data_5m @@ -135,6 +136,7 @@ prepare_haf_data: tags: - public-runner-docker - hived-for-tests + - hived docker-ci-runner-build: extends: .docker-base-build-template @@ -482,6 +484,7 @@ build_and_publish_image: tags: - public-runner-docker - hived-for-tests + - hived deploy_python_api_packages_to_gitlab: stage: publish -- GitLab