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

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