mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
ci: fix test assignment issue, rename env tag
This commit is contained in:
parent
a3cbc57c19
commit
cf7fe34cc2
@ -442,11 +442,12 @@ UT_031:
|
||||
extends: .unit_test_template
|
||||
parallel: 28
|
||||
tags:
|
||||
- 7.2.2
|
||||
- ESP32S2BETA_IDF
|
||||
- UT_T1_1
|
||||
|
||||
UT_032:
|
||||
extends: .unit_test_template
|
||||
parallel: 4
|
||||
tags:
|
||||
- ESP32_IDF
|
||||
- UT_T1_FlashEncryption
|
||||
|
@ -1,4 +1,4 @@
|
||||
"psram": '{CONFIG_ESP32_SPIRAM_SUPPORT=y} and not {CONFIG_SPIRAM_BANKSWITCH_ENABLE=y}'
|
||||
"8Mpsram": "CONFIG_SPIRAM_BANKSWITCH_ENABLE=y"
|
||||
"ESP32_IDF": "CONFIG_IDF_TARGET_ESP32=y"
|
||||
"7.2.2": "CONFIG_IDF_TARGET_ESP32S2BETA=y"
|
||||
"ESP32S2BETA_IDF": "CONFIG_IDF_TARGET_ESP32S2BETA=y"
|
@ -103,7 +103,7 @@ class Parser(object):
|
||||
file_name = table.get_string("any", file_name_addr)
|
||||
|
||||
# Search in tags to set the target
|
||||
target_tag_dict = {"ESP32_IDF": "esp32", "7.2.2": "esp32s2beta"}
|
||||
target_tag_dict = {"ESP32_IDF": "esp32", "ESP32S2BETA_IDF": "esp32s2beta"}
|
||||
for tag in target_tag_dict:
|
||||
if tag in tags:
|
||||
target = target_tag_dict[tag]
|
||||
|
Loading…
Reference in New Issue
Block a user