summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2023-09-24 10:51:00 -1000
committerSteve Sakoman <steve@sakoman.com>2023-09-24 10:53:11 -1000
commit989cd671cba392b07e48057f02e0b4dd090b48d2 (patch)
tree14efd59bebb12adff9906697cbd9bfa758762296
parent64242e2844ff2015ffa9391152681d7c05a186af (diff)
downloadpoky-989cd671cba392b07e48057f02e0b4dd090b48d2.tar.gz
Revert "oeqa/utils/gitarchive: fix tag computation when creating archive"
This reverts commit d0f8d5915a9ad3340a553b4a22f91074d7e679c9. This is causing errors with buildperf on the autobuilder. (From OE-Core rev: 87eee047cf77bc3fc2c7d6b2a4f35d2642919111) Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--meta/lib/oeqa/utils/gitarchive.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/meta/lib/oeqa/utils/gitarchive.py b/meta/lib/oeqa/utils/gitarchive.py
index 73beafecb5..6e8040eb5c 100644
--- a/meta/lib/oeqa/utils/gitarchive.py
+++ b/meta/lib/oeqa/utils/gitarchive.py
@@ -116,8 +116,7 @@ def expand_tag_strings(repo, name_pattern, msg_subj_pattern, msg_body_pattern,
116 tag_re = tag_re.format(tag_number='(?P<tag_number>[0-9]{1,5})') 116 tag_re = tag_re.format(tag_number='(?P<tag_number>[0-9]{1,5})')
117 117
118 keyws['tag_number'] = 0 118 keyws['tag_number'] = 0
119 tags_refs = repo.run_cmd(['ls-remote', '--refs', '--tags', '-q']) 119 for existing_tag in repo.run_cmd('tag').splitlines():
120 for existing_tag in ["".join(d.split()[1].split('/', 2)[2:]) for d in tags_refs.splitlines()]:
121 match = re.match(tag_re, existing_tag) 120 match = re.match(tag_re, existing_tag)
122 121
123 if match and int(match.group('tag_number')) >= keyws['tag_number']: 122 if match and int(match.group('tag_number')) >= keyws['tag_number']:
@@ -182,8 +181,7 @@ def get_test_runs(log, repo, tag_name, **kwargs):
182 181
183 # Get a list of all matching tags 182 # Get a list of all matching tags
184 tag_pattern = tag_name.format(**str_fields) 183 tag_pattern = tag_name.format(**str_fields)
185 revs = repo.run_cmd(['ls-remote', '--refs', '--tags', 'origin', '-q', tag_pattern]).splitlines() 184 tags = repo.run_cmd(['tag', '-l', tag_pattern]).splitlines()
186 tags = ["".join(d.split()[1].split('/', 2)[2:]) for d in revs]
187 log.debug("Found %d tags matching pattern '%s'", len(tags), tag_pattern) 185 log.debug("Found %d tags matching pattern '%s'", len(tags), tag_pattern)
188 186
189 # Parse undefined fields from tag names 187 # Parse undefined fields from tag names