Merge branch 'bugfix/ttfw_idf_find_artifacts_inaccurate_with_same_prefix_path' into 'master'

CI: fix the bug returns wrong artifact path when app_name is a subset of a longer one

Closes IDFCI-217

See merge request espressif/esp-idf!11187
pull/6192/head
Mahavir Jain 2020-11-12 12:12:51 +08:00
commit 0fb65d0bae
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -80,7 +80,9 @@ class Artifacts(object):
for artifact_info in artifact_index:
match_result = True
if app_path:
match_result = app_path in artifact_info["app_dir"]
# We use endswith here to avoid issue like:
# examples_protocols_mqtt_ws but return a examples_protocols_mqtt_wss failure
match_result = artifact_info["app_dir"].endswith(app_path)
if config_name:
match_result = match_result and config_name == artifact_info["config"]
if target: