mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-31 11:17:20 +02:00
CI: fix the bug returns wrong artifact path when app_name is a subset of a longer one
This commit is contained in:
@ -78,7 +78,9 @@ class Artifacts(object):
|
|||||||
for artifact_info in artifact_index:
|
for artifact_info in artifact_index:
|
||||||
match_result = True
|
match_result = True
|
||||||
if app_path:
|
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:
|
if config_name:
|
||||||
match_result = match_result and config_name == artifact_info["config"]
|
match_result = match_result and config_name == artifact_info["config"]
|
||||||
if target:
|
if target:
|
||||||
|
Reference in New Issue
Block a user