openubmc-bingo 0.6.24__py3-none-any.whl → 0.6.25__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of openubmc-bingo might be problematic. Click here for more details.
- bmcgo/__init__.py +1 -1
- bmcgo/cli/cli.py +2 -0
- bmcgo/component/build.py +1 -1
- bmcgo/tasks/task_build_conan.py +15 -0
- bmcgo/utils/build_conans.py +9 -2
- {openubmc_bingo-0.6.24.dist-info → openubmc_bingo-0.6.25.dist-info}/METADATA +1 -1
- {openubmc_bingo-0.6.24.dist-info → openubmc_bingo-0.6.25.dist-info}/RECORD +10 -10
- {openubmc_bingo-0.6.24.dist-info → openubmc_bingo-0.6.25.dist-info}/WHEEL +0 -0
- {openubmc_bingo-0.6.24.dist-info → openubmc_bingo-0.6.25.dist-info}/entry_points.txt +0 -0
- {openubmc_bingo-0.6.24.dist-info → openubmc_bingo-0.6.25.dist-info}/top_level.txt +0 -0
bmcgo/__init__.py
CHANGED
bmcgo/cli/cli.py
CHANGED
|
@@ -342,6 +342,8 @@ class Command(object):
|
|
|
342
342
|
if not rtos_version:
|
|
343
343
|
log.info(f"未检测到/opt/RTOS目录下的构建工具,可能未安装构建工具,请正确安装构建工具(可以manifest仓执行init.py或{misc.tool_name()} build)")
|
|
344
344
|
return
|
|
345
|
+
if not os.path.isdir(bingo_profiles):
|
|
346
|
+
return
|
|
345
347
|
for file in os.listdir(bingo_profiles):
|
|
346
348
|
os.makedirs(profile_dir, exist_ok=True)
|
|
347
349
|
src_file = os.path.join(bingo_profiles, file)
|
bmcgo/component/build.py
CHANGED
|
@@ -79,7 +79,7 @@ class BuildComp():
|
|
|
79
79
|
options = ""
|
|
80
80
|
if self.info.enable_luajit:
|
|
81
81
|
luac_path = os.path.join(conan_bin, "luajit")
|
|
82
|
-
options = "-
|
|
82
|
+
options = "-o skynet:enable_luajit=True"
|
|
83
83
|
skynet_flag += "_luajit"
|
|
84
84
|
else:
|
|
85
85
|
skynet_flag += "luac"
|
bmcgo/tasks/task_build_conan.py
CHANGED
|
@@ -407,6 +407,21 @@ class TaskClass(Task):
|
|
|
407
407
|
file_handler.write(" - conan: \"{}\"\n".format(conan))
|
|
408
408
|
self.success(f"获取到依赖: {conan}")
|
|
409
409
|
self.depdencies.append(conan)
|
|
410
|
+
self.profile_tools_change(conan)
|
|
411
|
+
|
|
412
|
+
def profile_tools_change(self, pkg):
|
|
413
|
+
if pkg.startswith("luajit/"):
|
|
414
|
+
cmd = f"sed -i 's|^user.tools:luajit=.*|user.tools:luajit={pkg}|g'"
|
|
415
|
+
elif pkg.startswith("skynet/"):
|
|
416
|
+
cmd = f"sed -i 's|^user.tools:skynet=.*|user.tools:skynet={pkg}|g'"
|
|
417
|
+
else:
|
|
418
|
+
return
|
|
419
|
+
profile_file = os.path.join(self.tools.conan_profiles_dir, "profile.ini")
|
|
420
|
+
if os.path.isfile(profile_file):
|
|
421
|
+
self.run_command(f"{cmd} {profile_file}")
|
|
422
|
+
profile_file = os.path.join(self.tools.conan_profiles_dir, "profile.luajit.ini")
|
|
423
|
+
if os.path.isfile(profile_file):
|
|
424
|
+
self.run_command(f"{cmd} {profile_file}")
|
|
410
425
|
|
|
411
426
|
def merge_manifest_v2(self):
|
|
412
427
|
comps = []
|
bmcgo/utils/build_conans.py
CHANGED
|
@@ -94,7 +94,8 @@ class BuildConans(object):
|
|
|
94
94
|
if self.force_build:
|
|
95
95
|
cmd += f" --build=\"{node.name}/*\""
|
|
96
96
|
try:
|
|
97
|
-
|
|
97
|
+
# 最多重试5次
|
|
98
|
+
for i in range(1, 5):
|
|
98
99
|
logfile = f"{self.log_dir}/conan_build_{node.name}.log"
|
|
99
100
|
log.debug(f">>>> {cmd}")
|
|
100
101
|
log.info(f">>>> build {node.ref} start, logfile: {logfile}")
|
|
@@ -116,12 +117,18 @@ class BuildConans(object):
|
|
|
116
117
|
cmd += f" --build=\"{node.name}/*\""
|
|
117
118
|
continue
|
|
118
119
|
|
|
119
|
-
log.error(f"================== {node.name} 构建失败日志起始位置 ==================")
|
|
120
120
|
f.seek(0)
|
|
121
121
|
conan_log = f.read()
|
|
122
|
+
# conan的缓存数据库不支持并发访问,会概率性存在数据库锁错误,当前通过重试解决
|
|
123
|
+
if "sqlite3.OperationalError: database is locked" in conan_log:
|
|
124
|
+
log.info("rebuild because database is locked")
|
|
125
|
+
continue
|
|
126
|
+
log.error(f"================== {node.name} 构建失败日志起始位置 ==================")
|
|
122
127
|
log.error(conan_log)
|
|
123
128
|
log.error(f"================== {node.name} 构建失败日志结束位置 ==================")
|
|
124
129
|
raise errors.BmcGoException(f"================== {node.name} 构建失败 ==================")
|
|
130
|
+
else:
|
|
131
|
+
break
|
|
125
132
|
log.success(f"<<<< build {node.ref} finished")
|
|
126
133
|
except Exception as e:
|
|
127
134
|
self.exception = e
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
bmcgo/__init__.py,sha256=
|
|
1
|
+
bmcgo/__init__.py,sha256=UIcAX3HFWIv4SVR6dvGzKjsZ-Hcy6x6_GwpA6css2D4,562
|
|
2
2
|
bmcgo/bmcgo.py,sha256=uD4TsfjrFB5aQPIS6WRUVc9ShXX-dSImY9ezkB13g1w,685
|
|
3
3
|
bmcgo/bmcgo_config.py,sha256=-HZcTsnccE5wUsgGJ59kq8sDdu8feftIbpyoFvyvBhU,11264
|
|
4
4
|
bmcgo/errors.py,sha256=QW1ndrJcJ2Ws7riOznPKVvZsNlrYk73eZol7w8gJTPU,3076
|
|
@@ -7,7 +7,7 @@ bmcgo/logger.py,sha256=rcMqJnyQ5Ag3k04KLEskrG8ZJ508OOU_JH4fMFiGOqQ,6644
|
|
|
7
7
|
bmcgo/misc.py,sha256=w0vzsD7uzrsxTly5Y1viLgYTKHhLP4sxa499XwbqHnU,6986
|
|
8
8
|
bmcgo/worker.py,sha256=OXz5Gam3pmZjgQeoGJrYy73ZrQszCOxk9X19nbeBI_A,15710
|
|
9
9
|
bmcgo/cli/__init__.py,sha256=BDXz8BcSlCkfo5UYt6j2rm89-HiYA1ZzfpFhy99MH-0,538
|
|
10
|
-
bmcgo/cli/cli.py,sha256=
|
|
10
|
+
bmcgo/cli/cli.py,sha256=pgkIjjo3owY3tNbujIUGxJshanVElrwJ0gsXj8X3BXI,27181
|
|
11
11
|
bmcgo/cli/config.conan2.yaml,sha256=SAtM_6_qOjZbkgUT5fzWbhbq4aWCayqE8o4xJ2vBRww,261
|
|
12
12
|
bmcgo/cli/config.yaml,sha256=tbnFhz2TTrl2-ALpHHujbXB1ymZpjGC4f0zTfqfUZfM,194
|
|
13
13
|
bmcgo/codegen/__init__.py,sha256=eplRBfR_obzVWMQtIeX1RRq6DOEezBx_l1EqcZYLRPM,775
|
|
@@ -168,7 +168,7 @@ bmcgo/codegen/lua/v1/templates/apps/service.lua.mako,sha256=wd_NJtiSSMbR-lxEqv-r
|
|
|
168
168
|
bmcgo/codegen/lua/v1/templates/apps/utils/mdb_intf.lua.mako,sha256=msdj2SygZvV3RIEHLeVDfZvOzZ99Yy27SwPVrFVVcpc,1242
|
|
169
169
|
bmcgo/codegen/lua/v1/templates/apps/utils/mdb_obj.lua.mako,sha256=oCzx2u3bjvCdNKX5oC8j6Q-Zb21q6SFCqd14_VzrWvo,349
|
|
170
170
|
bmcgo/component/__init__.py,sha256=BDXz8BcSlCkfo5UYt6j2rm89-HiYA1ZzfpFhy99MH-0,538
|
|
171
|
-
bmcgo/component/build.py,sha256=
|
|
171
|
+
bmcgo/component/build.py,sha256=HWjgY1L1AXL7ndA35PKMFfweGSd8xXTRjY-ULW9ngGw,12851
|
|
172
172
|
bmcgo/component/component_dt_version_parse.py,sha256=-Rt6i2fZrmYNZGoMqB21D_T9fC7fhhtUFIFvdPsMICM,14188
|
|
173
173
|
bmcgo/component/component_helper.py,sha256=rNwfhagfz6E3BjKERq9oOPLRfeKQlqhLojb6oJLXcEA,7933
|
|
174
174
|
bmcgo/component/deploy.py,sha256=Iy5CsiolKS1h5jDg13nYkfy6--BtbBZ8FLou2oVuoLQ,6544
|
|
@@ -224,7 +224,7 @@ bmcgo/tasks/__init__.py,sha256=VapgzhPMmB7dzPIRohoVm1jjfVn_v97cYNCRmkxScaU,539
|
|
|
224
224
|
bmcgo/tasks/download_buildtools_hm.py,sha256=f4UxStARc8Z8DnT_5O6ONajQ7P0sKyJ8brixr43fHVQ,5988
|
|
225
225
|
bmcgo/tasks/misc.py,sha256=GK_bSDLGZW0FxywB2ICG1iIEz2y2QoCb1YQQk8SYOIA,711
|
|
226
226
|
bmcgo/tasks/task.py,sha256=w8tdU5NwoUfVF4xKFvSzcCWCf0FGTBHJAToNLlP0p4w,18424
|
|
227
|
-
bmcgo/tasks/task_build_conan.py,sha256=
|
|
227
|
+
bmcgo/tasks/task_build_conan.py,sha256=cpGFUgwzp2WmrZr9ISFdPUDO5kPuEWqJWTFFdL_1MLk,51173
|
|
228
228
|
bmcgo/tasks/task_build_rootfs_img.py,sha256=JKEvldJnLWu2IdVSntuVowocQwdVtBQUpxzhplYauPI,29209
|
|
229
229
|
bmcgo/tasks/task_build_wbd_up.py,sha256=X9-0Qqad-s3mGfJBMeBQvfZ99KlWcgaMluDr_zv6Z-o,3122
|
|
230
230
|
bmcgo/tasks/task_buildgppbin.py,sha256=epBxxrYFPgoTzpBgPzSRXcUs-ia_BJWsLGflylEJS7I,6614
|
|
@@ -241,7 +241,7 @@ bmcgo/tasks/conan/conanfile.py,sha256=MI6c2QNKixrkA5Tx4i9EKw7bZ20GVDIKgkaMwNHQKc
|
|
|
241
241
|
bmcgo/utils/__init__.py,sha256=BDXz8BcSlCkfo5UYt6j2rm89-HiYA1ZzfpFhy99MH-0,538
|
|
242
242
|
bmcgo/utils/basic_enums.py,sha256=L5VtHtzSvs6duAnphgqDGXX80Wit3Y7DjMlpi9MCxyI,1348
|
|
243
243
|
bmcgo/utils/buffer.py,sha256=t1SkWntWksboNFMPsltslwRdXZi3FAe8eV0JAAE7Vto,4004
|
|
244
|
-
bmcgo/utils/build_conans.py,sha256=
|
|
244
|
+
bmcgo/utils/build_conans.py,sha256=3uGn9MWlW3d8WNKZQPs4rEd6E6KxP_eyqSxSlSQQG4o,10172
|
|
245
245
|
bmcgo/utils/combine_json_schemas.py,sha256=08JrAlLeo_JgUqzYcZNgSwJZPLfjbWVJ4esPPt9bPMY,7967
|
|
246
246
|
bmcgo/utils/component_post.py,sha256=rTSMv36geI6rbm6ZFQenZfG0mn1nVPpdJqn7g8bYtKA,2330
|
|
247
247
|
bmcgo/utils/component_version_check.py,sha256=nKfav7EnJ_JWfCvH_SiyhhIapGXUzhFs1QvLb58MPBs,6266
|
|
@@ -264,8 +264,8 @@ bmcgo/utils/installations/install_plans/qemu.yml,sha256=lT7aKag60QUH6hTGFKa3hGRq
|
|
|
264
264
|
bmcgo/utils/installations/install_plans/studio.yml,sha256=APR3GM-3Q11LFfe8vh7t3LztDn4LLEpNHRUNjkaVekA,143
|
|
265
265
|
bmcgo/utils/installations/installers/apt_installer.py,sha256=nPaCb4cobSi9InN_aHsEPtQ0k4FgsCUWE5_VgBPvcRE,3769
|
|
266
266
|
bmcgo/utils/installations/installers/pip_installer.py,sha256=dDdios1EQ7fzt90r02pZeoM3jCmjslLzkSvzd2hgRVM,3241
|
|
267
|
-
openubmc_bingo-0.6.
|
|
268
|
-
openubmc_bingo-0.6.
|
|
269
|
-
openubmc_bingo-0.6.
|
|
270
|
-
openubmc_bingo-0.6.
|
|
271
|
-
openubmc_bingo-0.6.
|
|
267
|
+
openubmc_bingo-0.6.25.dist-info/METADATA,sha256=9npzn3E3oo6oiNlQGepfcjj0msWe2jDEmSlhBefEm5E,1010
|
|
268
|
+
openubmc_bingo-0.6.25.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
269
|
+
openubmc_bingo-0.6.25.dist-info/entry_points.txt,sha256=UUoUP-vAWTgg9vEYbRwYqOBHgpRtkngdzMPb-ocz90g,42
|
|
270
|
+
openubmc_bingo-0.6.25.dist-info/top_level.txt,sha256=9AcvCAt1nZcOgMsGt6T07mg2Bgtdet-3mHTwg91axgI,6
|
|
271
|
+
openubmc_bingo-0.6.25.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|