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.
pull/4273/head
Angus Gratton 2019-09-13 14:02:58 +10:00 zatwierdzone przez Angus Gratton
rodzic 35147119f1
commit 49698e15f3
2 zmienionych plików z 7 dodań i 4 usunięć

Wyświetl plik

@ -95,6 +95,11 @@ kconfigs = find_component_files("../../components", "Kconfig")
kconfig_projbuilds = find_component_files("../../components", "Kconfig.projbuild") kconfig_projbuilds = find_component_files("../../components", "Kconfig.projbuild")
sdkconfig_renames = find_component_files("../../components", "sdkconfig.rename") 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, confgen_args = [sys.executable,
"../../tools/kconfig_new/confgen.py", "../../tools/kconfig_new/confgen.py",
"--kconfig", "../../Kconfig", "--kconfig", "../../Kconfig",

Wyświetl plik

@ -250,13 +250,11 @@ build_docs:
- cd en - cd en
- make gh-linkcheck - make gh-linkcheck
- make html - make html
# TODO: revert it before release esp32s2 - ../check_doc_warnings.sh
# - ../check_doc_warnings.sh
- cd ../zh_CN - cd ../zh_CN
- make gh-linkcheck - make gh-linkcheck
- make html - make html
# TODO: revert it before release esp32s2 - ../check_doc_warnings.sh
#- ../check_doc_warnings.sh
verify_cmake_style: verify_cmake_style:
extends: .check_job_template extends: .check_job_template