mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-04 16:10:04 +00:00
scripts/lib/scriptutils.py: add recipe_qa artifacts to exclusion list in filter_src_subdirs()
With newly added recipe_qa task, the function needs to filter out its output as well. The issue wouldn't appear in selftest because it's triggered by buildhistory and selftest disables that. (From OE-Core rev: da1284c990957827ee89685921c53b64490a32b2) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
5fa764fff8
commit
1666605fe5
|
|
@ -277,6 +277,6 @@ def filter_src_subdirs(pth):
|
|||
Used by devtool and recipetool.
|
||||
"""
|
||||
dirlist = os.listdir(pth)
|
||||
filterout = ['git.indirectionsymlink', 'source-date-epoch']
|
||||
filterout = ['git.indirectionsymlink', 'source-date-epoch', 'sstate-install-recipe_qa']
|
||||
dirlist = [x for x in dirlist if x not in filterout]
|
||||
return dirlist
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user