ci(doc): kconfig change should trigger a full doc build

This commit is contained in:
morris
2025-06-03 18:45:55 +08:00
parent d0aabd36b4
commit 6bbd68b1f8
3 changed files with 4 additions and 2 deletions

View File

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

View File

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

View File

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