mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-02 04:04:31 +02:00
ci: fix test assignment issue, rename env tag
This commit is contained in:
@@ -442,11 +442,12 @@ UT_031:
|
|||||||
extends: .unit_test_template
|
extends: .unit_test_template
|
||||||
parallel: 28
|
parallel: 28
|
||||||
tags:
|
tags:
|
||||||
- 7.2.2
|
- ESP32S2BETA_IDF
|
||||||
- UT_T1_1
|
- UT_T1_1
|
||||||
|
|
||||||
UT_032:
|
UT_032:
|
||||||
extends: .unit_test_template
|
extends: .unit_test_template
|
||||||
|
parallel: 4
|
||||||
tags:
|
tags:
|
||||||
- ESP32_IDF
|
- ESP32_IDF
|
||||||
- UT_T1_FlashEncryption
|
- UT_T1_FlashEncryption
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
"psram": '{CONFIG_ESP32_SPIRAM_SUPPORT=y} and not {CONFIG_SPIRAM_BANKSWITCH_ENABLE=y}'
|
"psram": '{CONFIG_ESP32_SPIRAM_SUPPORT=y} and not {CONFIG_SPIRAM_BANKSWITCH_ENABLE=y}'
|
||||||
"8Mpsram": "CONFIG_SPIRAM_BANKSWITCH_ENABLE=y"
|
"8Mpsram": "CONFIG_SPIRAM_BANKSWITCH_ENABLE=y"
|
||||||
"ESP32_IDF": "CONFIG_IDF_TARGET_ESP32=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)
|
file_name = table.get_string("any", file_name_addr)
|
||||||
|
|
||||||
# Search in tags to set the target
|
# 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:
|
for tag in target_tag_dict:
|
||||||
if tag in tags:
|
if tag in tags:
|
||||||
target = target_tag_dict[tag]
|
target = target_tag_dict[tag]
|
||||||
|
Reference in New Issue
Block a user