feat(wifi_remote): Add build test for current IDF examples

Building also standard IDF examples that use esp-wifi-remote (building
for wifiless targets ESP32P4, ESP32H2 and one wifi target ESP32s3)
This commit is contained in:
David Cermak
2024-09-18 18:05:45 +02:00
parent bde97203ed
commit 50c113e412
4 changed files with 48 additions and 2 deletions

View File

@ -222,6 +222,10 @@ if SLAVE_IDF_TARGET_ESP32C6
bool
default y
config SLAVE_SOC_WIFI_MAC_VERSION_NUM
int
default 2
endif # ESP32C6
if SLAVE_IDF_TARGET_ESP32C5
@ -266,6 +270,10 @@ if SLAVE_IDF_TARGET_ESP32C5
bool
default y
config SLAVE_SOC_WIFI_MAC_VERSION_NUM
int
default 3
endif # ESP32C5
if SLAVE_IDF_TARGET_ESP32C61
@ -306,4 +314,8 @@ if SLAVE_IDF_TARGET_ESP32C61
bool
default y
config SLAVE_SOC_WIFI_MAC_VERSION_NUM
int
default 3
endif # ESP32C61

View File

@ -10,7 +10,8 @@ if len(sys.argv) < 2:
output_directory = sys.argv[1]
# Input Kconfig file
kconfig_file = f"idf_v{os.getenv('ESP_IDF_VERSION')}/Kconfig.slave_select.in"
component_path = os.path.normpath(os.path.join(os.path.realpath(__file__),'..', '..'))
kconfig_file = os.path.join(component_path, f"idf_v{os.getenv('ESP_IDF_VERSION')}", 'Kconfig.slave_select.in')
# Output file prefix
output_prefix = 'sdkconfig.ci.'