mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
docs: Don't build any docs for the esp32s2beta component
Re-enable failing CI for warnings in the docs build This config hack can be removed once IDF-523 is implemented.
This commit is contained in:
parent
35147119f1
commit
49698e15f3
@ -95,6 +95,11 @@ kconfigs = find_component_files("../../components", "Kconfig")
|
||||
kconfig_projbuilds = find_component_files("../../components", "Kconfig.projbuild")
|
||||
sdkconfig_renames = find_component_files("../../components", "sdkconfig.rename")
|
||||
|
||||
# trim the esp32s2beta component, until we have proper multi-target support
|
||||
kconfigs = [k for k in kconfigs if "esp32s2beta" not in k]
|
||||
kconfig_projbuilds = [k for k in kconfig_projbuilds if "esp32s2beta" not in k]
|
||||
sdkconfig_renames = [r for r in sdkconfig_renames if "esp32s2beta" not in r]
|
||||
|
||||
confgen_args = [sys.executable,
|
||||
"../../tools/kconfig_new/confgen.py",
|
||||
"--kconfig", "../../Kconfig",
|
||||
|
@ -250,13 +250,11 @@ build_docs:
|
||||
- cd en
|
||||
- make gh-linkcheck
|
||||
- make html
|
||||
# TODO: revert it before release esp32s2
|
||||
# - ../check_doc_warnings.sh
|
||||
- ../check_doc_warnings.sh
|
||||
- cd ../zh_CN
|
||||
- make gh-linkcheck
|
||||
- make html
|
||||
# TODO: revert it before release esp32s2
|
||||
#- ../check_doc_warnings.sh
|
||||
- ../check_doc_warnings.sh
|
||||
|
||||
verify_cmake_style:
|
||||
extends: .check_job_template
|
||||
|
Loading…
x
Reference in New Issue
Block a user