Skip to content

Commit

Permalink
Use cached files in GCB, test CI fail
Browse files Browse the repository at this point in the history
  • Loading branch information
aBozowski committed May 26, 2022
1 parent bf89f5a commit 4070d6f
Show file tree
Hide file tree
Showing 2 changed files with 7,396 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/chef/chef.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def main(argv: Sequence[str]) -> None:
print(f"Generating files in {chef_zzz_root} for all devices", flush=True)
for device_dir_item in os.listdir(chef_devices_dir):
target_file_ext = ".zap"
if device_dir_item.endswith(target_file_ext) and device_dir_item in chef_util.ci_allowlist:
if device_dir_item.endswith(target_file_ext): # and device_dir_item in chef_util.ci_allowlist:
device_name = device_dir_item[:-len(target_file_ext)]
print(f"Generating files for {device_name}", flush=True)
device_out_dir = os.path.join(chef_zzz_root, device_name)
Expand Down Expand Up @@ -299,7 +299,7 @@ def main(argv: Sequence[str]) -> None:
directory = platform_meta['build_dir']
label = platform_meta['platform_label']
output_dir = os.path.join(_CHEF_SCRIPT_PATH, directory)
command = './chef.py -czbr -d {} -t {}'.format(device_name, platform)
command = './chef.py -cbr --use_zzz -d {} -t {}'.format(device_name, platform)
print('-' * 64, flush=True)
print(f"Building {command}", flush=True)
print('-' * 64, flush=True)
Expand Down
Loading

0 comments on commit 4070d6f

Please sign in to comment.