Merge branch 'ci/fix_build_rules_system' into 'master'

ci(system): fixed build-test-rules which used ARCH config

See merge request espressif/esp-idf!34585
This commit is contained in:
Marius Vikhammer
2024-11-01 10:16:41 +08:00

View File

@@ -110,14 +110,14 @@ examples/system/himem:
examples/system/ipc/ipc_isr/riscv:
enable:
- if: IDF_TARGET_ARCH_RISCV == 1 and ESP_IPC_ISR_ENABLE == 1
- if: IDF_TARGET in ["esp32p4"]
reason: The test is intended only for multi-core chips
depends_components:
- esp_system
examples/system/ipc/ipc_isr/xtensa:
enable:
- if: IDF_TARGET_ARCH_XTENSA == 1 and ESP_IPC_ISR_ENABLE == 1
- if: IDF_TARGET in ["esp32", "esp32s3"]
reason: The test is intended only for multi-core chips
depends_components:
- esp_system
@@ -128,7 +128,7 @@ examples/system/light_sleep:
examples/system/nmi_isr:
enable:
- if: IDF_TARGET_ARCH_XTENSA == 1
- if: IDF_TARGET in ["esp32", "esp32s2", "esp32s3"]
reason: test NMI for Xtensa targets only
examples/system/ota/advanced_https_ota: