Skip BIM converter rebuild for viewer-only deploys

This commit is contained in:
Codex 2026-06-23 14:08:12 +03:00
parent 25b4ce0f6d
commit 1aaf53c378
1 changed files with 4 additions and 0 deletions

View File

@ -828,6 +828,10 @@ def component_build_args(component, entries=None):
touches_notification = any(rel == "platform/notification-core" or rel.startswith("platform/notification-core/") for rel in entries)
return COMPONENTS[component].get("build") if touches_notification else None
if component == "bim-viewer" and entries is not None:
touches_converter = any(rel == "converter" or rel.startswith("converter/") for rel in entries)
return COMPONENTS[component].get("build") if touches_converter else None
return COMPONENTS[component].get("build")