From 914b4e014c3dac6aab9347ce9b92d68ff5f92834 Mon Sep 17 00:00:00 2001 From: Dan Notestein Date: Fri, 5 Dec 2025 00:23:07 -0500 Subject: [PATCH] Temporarily disable haf-node-replay job and dependent tests The replay job fails due to missing upstream Docker image tags (e.g., hivemind:1.28.6-rc1). The jobs are set to manual so they can still be run if the images become available. Affected jobs: - haf-node-replay - haf_api_node_replay_data_copy - haf_api_node_test The cleanup job now has optional dependencies so it can still run. --- .gitlab-ci.yml | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e5bfbb4..1effef4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -72,7 +72,7 @@ docker-build: ######## Replay ######## haf-node-replay: - extends: + extends: - .haf-node-replay stage: replay needs: @@ -80,6 +80,11 @@ haf-node-replay: tags: - data-cache-storage - hive-builder-9 + # Temporarily disabled - missing Docker image tags (hivemind:1.28.6-rc1 etc) + # Re-enable when upstream images are available + rules: + - when: manual + allow_failure: true ######## End replay ######## @@ -87,7 +92,7 @@ haf-node-replay: # Creates a copy of replay data to be used in the tests haf_api_node_replay_data_copy: - extends: + extends: - .haf_api_node_replay_data_copy stage: test needs: @@ -95,10 +100,14 @@ haf_api_node_replay_data_copy: tags: - data-cache-storage - hive-builder-9 + # Temporarily disabled - depends on haf-node-replay which is disabled + rules: + - when: manual + allow_failure: true # Tests if HAF API node is working properly haf_api_node_test: - extends: + extends: - .haf_api_node_test stage: test needs: @@ -106,6 +115,10 @@ haf_api_node_test: tags: - data-cache-storage - hive-builder-9 + # Temporarily disabled - depends on haf_api_node_replay_data_copy which is disabled + rules: + - when: manual + allow_failure: true ######## End test ######## @@ -187,9 +200,11 @@ publish-images-develop: # Deletes replay data used by the tests and created by haf_api_node_replay_data_copy cleanup_haf_api_node_pipeline_cache: needs: - - haf_api_node_replay_data_copy - - haf_api_node_test - extends: + - job: haf_api_node_replay_data_copy + optional: true + - job: haf_api_node_test + optional: true + extends: - .cleanup_cache_manual_template stage: cleanup variables: -- GitLab