8000 [Chef] Remove devices not developed actively from Linux CI to reduce CI time. by sxb427 · Pull Request #39979 · project-chip/connectedhomeip · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[Chef] Remove devices not developed actively from Linux CI to reduce CI time. #39979

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions examples/chef/chef.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,13 @@
for file in os.listdir(_DEVICE_FOLDER) if file.endswith(".zap") and file != 'template.zap']
_CICD_CONFIG_FILE_NAME = os.path.join(_CHEF_SCRIPT_PATH, "cicd_config.json")
_CD_STAGING_DIR = os.path.join(_CHEF_SCRIPT_PATH, "staging")
_EXCLUDE_DEVICE_FROM_LINUX_CI = [ # These do not compile / deprecated.
"noip_rootnode_dimmablelight_bCwGYSDpoe",
_EXCLUDE_DEVICE_FROM_LINUX_CI = [
"noip_rootnode_dimmablelight_bCwGYSDpoe", # Broken.
"rootnode_genericswitch_2dfff6e516", # not actively developed,
"rootnode_mounteddimmableloadcontrol_a9a1a87f2d", # not actively developed,
"rootnode_mountedonoffcontrol_ec30c757a6", # not actively developed,
"rootnode_onofflight_samplemei", # not actively developed,
"rootnode_watervalve_6bb39f1f67", # not actively developed,
]
# Pattern to filter (based on device-name) devices that need ICD support.
_ICD_DEVICE_PATTERN = "^icd_"
Expand Down
Loading
0