Skip to content

Commit

Permalink
Chef - Add automated_test_stamp to Chef CD builds
Browse files Browse the repository at this point in the history
  • Loading branch information
cpagravel committed Jul 21, 2022
1 parent 83deb47 commit 1a688bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/chef/chef.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def main(argv: Sequence[str]) -> None:
if options.dry_run:
flush_print(archive_name)
continue
command = f"./chef.py -cbr --use_zzz -d {device_name} -t {platform} "
command = f"./chef.py -cbra --use_zzz -d {device_name} -t {platform} "
command += " ".join(args)
flush_print(f"Building {command}", with_border=True)
shell.run_cmd(f"cd {_CHEF_SCRIPT_PATH}")
Expand Down
8 changes: 4 additions & 4 deletions examples/chef/cicd_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
"ci_allow_list": ["rootnode_dimmablelight_bCwGYSDpoe"],
"cd_platforms": {
"linux": {
"linux_x86": ["--cpu_type", "x64"],
"linux_arm64_ipv6only": ["--cpu_type", "arm64", "--ipv6only"]
"linux_x86": ["--cpu_type", "x64", "-a"],
"linux_arm64_ipv6only": ["--cpu_type", "arm64", "--ipv6only", "-a"]
},
"esp32": {
"m5stack": []
"m5stack": ["-a"]
},
"nrfconnect": {
"nrf52840dk": []
"nrf52840dk": ["-a"]
}
}
}

0 comments on commit 1a688bc

Please sign in to comment.