diff --git a/.gitlab/ci/docs.yml b/.gitlab/ci/docs.yml index f0c1434d88..d194f9d159 100644 --- a/.gitlab/ci/docs.yml +++ b/.gitlab/ci/docs.yml @@ -4,10 +4,10 @@ - "**/*.rst" - "CONTRIBUTING.rst" - "**/soc_caps.h" + - "**/Kconfig*" .patterns-docs-partial: &patterns-docs-partial - "components/**/*.h" - - "components/**/Kconfig*" - "components/**/CMakeList.txt" - "components/**/sdkconfig*" - "tools/tools.json" diff --git a/components/esp_driver_sdio/test_apps/sdio/sdio_common_tests/sdio/main/test_sdio_slave.c b/components/esp_driver_sdio/test_apps/sdio/sdio_common_tests/sdio/main/test_sdio_slave.c index a5ff22fd7e..e4fc620d3d 100644 --- a/components/esp_driver_sdio/test_apps/sdio/sdio_common_tests/sdio/main/test_sdio_slave.c +++ b/components/esp_driver_sdio/test_apps/sdio/sdio_common_tests/sdio/main/test_sdio_slave.c @@ -318,7 +318,7 @@ TEST_CASE("SDIO_Slave: test to host (Performance)", "[sdio_speed]") test_to_host(); } -#if SOC_PAU_SUPPORTED +#if CONFIG_PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP #include "esp_private/sleep_sys_periph.h" #include "esp_private/sleep_retention.h" diff --git a/components/esp_hw_support/test_apps/sleep_retention/main/test_retention.c b/components/esp_hw_support/test_apps/sleep_retention/main/test_retention.c index 72a4e5b3e8..23a282c78d 100644 --- a/components/esp_hw_support/test_apps/sleep_retention/main/test_retention.c +++ b/components/esp_hw_support/test_apps/sleep_retention/main/test_retention.c @@ -16,6 +16,7 @@ const char TAG[] = "retention"; +#if CONFIG_PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP TEST_CASE("retention: can go to retention", "[retention]") { // Prepare a TOP PD sleep @@ -35,3 +36,4 @@ TEST_CASE("retention: can go to retention", "[retention]") sleep_cpu_configure(false); } +#endif