mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-10 07:44:39 +01:00
XML generation for data model is failing intermittently on pipeline.
This commit is contained in:
parent
7b376e0379
commit
bd4f3c45fb
1 changed files with 3 additions and 0 deletions
|
|
@ -419,6 +419,7 @@ def generate_supported_dm(vendor_prefix=None, vendor_list=None, plugins=None):
|
||||||
for DIR in LIST_DM_DIR:
|
for DIR in LIST_DM_DIR:
|
||||||
cd_dir(DIR)
|
cd_dir(DIR)
|
||||||
for _root, _dirs, files in os.walk("."):
|
for _root, _dirs, files in os.walk("."):
|
||||||
|
files.sort()
|
||||||
for filename in files:
|
for filename in files:
|
||||||
if filename.endswith('.c') is False or filename == BBF_TR181_ROOT_FILE or filename == BBF_TR104_ROOT_FILE:
|
if filename.endswith('.c') is False or filename == BBF_TR181_ROOT_FILE or filename == BBF_TR104_ROOT_FILE:
|
||||||
continue
|
continue
|
||||||
|
|
@ -438,6 +439,7 @@ def generate_supported_dm(vendor_prefix=None, vendor_list=None, plugins=None):
|
||||||
generate_datamodel_tree(BBF_TR181_ROOT_FILE)
|
generate_datamodel_tree(BBF_TR181_ROOT_FILE)
|
||||||
|
|
||||||
for _root, _dirs, files in os.walk("."):
|
for _root, _dirs, files in os.walk("."):
|
||||||
|
files.sort()
|
||||||
for filename in files:
|
for filename in files:
|
||||||
if filename.endswith('.c') is False or filename == BBF_VENDOR_ROOT_FILE or filename == BBF_TR181_ROOT_FILE:
|
if filename.endswith('.c') is False or filename == BBF_VENDOR_ROOT_FILE or filename == BBF_TR181_ROOT_FILE:
|
||||||
continue
|
continue
|
||||||
|
|
@ -451,6 +453,7 @@ def generate_supported_dm(vendor_prefix=None, vendor_list=None, plugins=None):
|
||||||
cd_dir(vendor_dir)
|
cd_dir(vendor_dir)
|
||||||
|
|
||||||
for _root, _dirs, files in os.walk("."):
|
for _root, _dirs, files in os.walk("."):
|
||||||
|
files.sort()
|
||||||
for filename in files:
|
for filename in files:
|
||||||
if filename.endswith('.c') is False:
|
if filename.endswith('.c') is False:
|
||||||
continue
|
continue
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue