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:
Angus Gratton 2019-09-13 14:02:58 +10:00 committed by Angus Gratton
parent 35147119f1
commit 49698e15f3
2 changed files with 7 additions and 4 deletions

View file

@ -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",

View file

@ -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