Skip BIM converter rebuild for viewer-only deploys
This commit is contained in:
parent
25b4ce0f6d
commit
1aaf53c378
|
|
@ -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")
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue