From dd59f1e73dc11ffa95ed362b058112b3ef4765fd Mon Sep 17 00:00:00 2001 From: Austin Bozowski Date: Tue, 31 May 2022 07:04:36 +0000 Subject: [PATCH] Rename manifest --- examples/chef/chef.py | 5 ++++- examples/chef/{cimanifest.json => ci_manifest.json} | 0 2 files changed, 4 insertions(+), 1 deletion(-) rename examples/chef/{cimanifest.json => ci_manifest.json} (100%) diff --git a/examples/chef/chef.py b/examples/chef/chef.py index 0d0892d3ad4c1a..e030cdd0c95abd 100755 --- a/examples/chef/chef.py +++ b/examples/chef/chef.py @@ -39,7 +39,7 @@ _DEVICE_FOLDER = os.path.join(_CHEF_SCRIPT_PATH, "devices") _DEVICE_LIST = [file[:-4] for file in os.listdir(_DEVICE_FOLDER) if file.endswith(".zap")] _CHEF_ZZZ_ROOT = os.path.join(_CHEF_SCRIPT_PATH, "zzz_generated") -_CI_MANIFEST_FILE_NAME = os.path.join(_CHEF_SCRIPT_PATH, "cimanifest.json") +_CI_MANIFEST_FILE_NAME = os.path.join(_CHEF_SCRIPT_PATH, "ci_manifest.json") _CI_DEVICE_MANIFEST_NAME = "INPUTMD5.txt" _CICD_CONFIG_FILE_NAME = os.path.join(_CHEF_SCRIPT_PATH, "cicd_meta.json") _CI_ALLOW_LIST = ["lighting-app"] @@ -108,6 +108,7 @@ def check_zap_master() -> str: # zap_commit = zap_commit.split(" ")[2] # zap_commit = zap_commit[:zap_commit.index("\\")] """ + # TODO zap_commit = 'TEMP DISABLED' flush_print(f"zap commit: {zap_commit}") return zap_commit @@ -307,6 +308,7 @@ def main(argv: Sequence[str]) -> None: flush_print(f"MISMATCH OUTPUT {device}: {fix_instrucitons}") exit(1) if False: + # TODO # Disabled; should check: # Current branch when writing manifest # Master in CI @@ -384,6 +386,7 @@ def main(argv: Sequence[str]) -> None: # if options.build_all: + # TODO # Needs testing after refactor # Needs to call per-platform bundle function flush_print("Build all disabled") diff --git a/examples/chef/cimanifest.json b/examples/chef/ci_manifest.json similarity index 100% rename from examples/chef/cimanifest.json rename to examples/chef/ci_manifest.json