Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 709 Bytes

README.md

File metadata and controls

28 lines (22 loc) · 709 Bytes

idf-ci

Python 3.7+

This repo contains the tools for CI/CD of ESP-IDF projects.

Configurations

.idf_ci.toml is the configuration file for idf-ci. It is a TOML file. The following reflects the default configurations:

# how to map the modified files into modified components
component_mapping_regexes = [
    "/components/(.+)/",
    "/common_components/(.+)/",
]
extend_component_mapping_regexes = []

# these files would be ignored when mapping the modified files into modified components
component_ignored_file_extensions = [
    ".md",
    ".rst",
    ".yaml",
    ".yml",
    ".py",
]
extend_component_ignored_file_extensions = []