Skip to content

Commit 4233552

Browse files
committed
Merge branch 'ci/kconfig_change_should_build_full_doc' into 'master'
ci(doc): kconfig change should trigger a full doc build See merge request espressif/esp-idf!39623
2 parents 39a44b4 + 6bbd68b commit 4233552

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.gitlab/ci/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
- "**/*.rst"
55
- "CONTRIBUTING.rst"
66
- "**/soc_caps.h"
7+
- "**/Kconfig*"
78

89
.patterns-docs-partial: &patterns-docs-partial
910
- "components/**/*.h"
10-
- "components/**/Kconfig*"
1111
- "components/**/CMakeList.txt"
1212
- "components/**/sdkconfig*"
1313
- "tools/tools.json"

components/esp_driver_sdio/test_apps/sdio/sdio_common_tests/sdio/main/test_sdio_slave.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ TEST_CASE("SDIO_Slave: test to host (Performance)", "[sdio_speed]")
318318
test_to_host();
319319
}
320320

321-
#if SOC_PAU_SUPPORTED
321+
#if CONFIG_PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP
322322
#include "esp_private/sleep_sys_periph.h"
323323
#include "esp_private/sleep_retention.h"
324324

components/esp_hw_support/test_apps/sleep_retention/main/test_retention.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
const char TAG[] = "retention";
1818

19+
#if CONFIG_PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP
1920
TEST_CASE("retention: can go to retention", "[retention]")
2021
{
2122
// Prepare a TOP PD sleep
@@ -35,3 +36,4 @@ TEST_CASE("retention: can go to retention", "[retention]")
3536

3637
sleep_cpu_configure(false);
3738
}
39+
#endif

0 commit comments

Comments
 (0)