summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/utils
diff options
context:
space:
mode:
authorAlexis Lothoré <alexis.lothore@bootlin.com>2023-08-24 11:18:10 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-08-24 13:34:34 +0100
commit359a105de609ec174863ad7a2874f5f2d398777c (patch)
treec2caed60e859ae710866131f19716a77482f5427 /meta/lib/oeqa/utils
parentdb6ace80a0c094748b0e8be6db9d3931be535a8c (diff)
downloadpoky-359a105de609ec174863ad7a2874f5f2d398777c.tar.gz
oeqa/utils/gitarchive: replace warning with info when reading local tags
Whenever a script needs to list tags, if it falls back to the third method (reading local tags only), it emits a warning. While this warning is useful for future diagnostic if some tagging issues re-appear, it makes buildperf autobuilds status as "Passed with warnings", which is not desirable (From OE-Core rev: b2c1d8a83a3b2134a8f9a445cbf00103e63ed0b3) Signed-off-by: Alexis Lothoré <alexis.lothore@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/utils')
-rw-r--r--meta/lib/oeqa/utils/gitarchive.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/gitarchive.py b/meta/lib/oeqa/utils/gitarchive.py
index ac36ecb3a9..64448f47d9 100644
--- a/meta/lib/oeqa/utils/gitarchive.py
+++ b/meta/lib/oeqa/utils/gitarchive.py
@@ -128,7 +128,7 @@ def get_tags(repo, log, pattern=None, url=None):
128 tags_refs = repo.run_cmd(cmd) 128 tags_refs = repo.run_cmd(cmd)
129 tags = ["".join(d.split()[1].split('/', 2)[2:]) for d in tags_refs.splitlines()] 129 tags = ["".join(d.split()[1].split('/', 2)[2:]) for d in tags_refs.splitlines()]
130 else: 130 else:
131 log.warning("Read local tags only, some remote tags may be missed") 131 log.info("Read local tags only, some remote tags may be missed")
132 cmd = ["tag"] 132 cmd = ["tag"]
133 if pattern: 133 if pattern:
134 cmd += ["-l", pattern] 134 cmd += ["-l", pattern]