Fix yuying compiling

This commit is contained in:
Terrence
2025-02-24 17:55:11 +08:00
parent de783b7c57
commit ffe0b21d18
6 changed files with 20 additions and 26 deletions

View File

@@ -70,6 +70,14 @@ def release(board_type, board_config):
print(f"跳过 {board_type} 因为 config.json 不存在")
return
# Print Project Version
project_version = get_project_version()
print(f"Project Version: {project_version}")
release_path = f"releases/v{project_version}_{board_type}.zip"
if os.path.exists(release_path):
print(f"跳过 {board_type} 因为 {release_path} 已存在")
return
with open(config_path, "r") as f:
config = json.load(f)
target = config["target"]
@@ -87,9 +95,6 @@ def release(board_type, board_config):
print(f"target: {target}")
for append in sdkconfig_append:
print(f"sdkconfig_append: {append}")
# Print Project Version
project_version = get_project_version()
print(f"Project Version: {project_version}")
# unset IDF_TARGET
os.environ.pop("IDF_TARGET", None)
# Call set-target