1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-03 01:40:07 +00:00

oeqa/selftest/reproducibile: Exclude rust packages

rust-llvm-liblto and rust-llvm-staticdev sometimes vary in contents. Exclude
them from the test for now until we can work on and resolve the issues.

(From OE-Core rev: 60c12da5aae2534c972df851f26e4523fed03afc)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2021-08-26 08:03:27 +01:00
parent b7fc3113a7
commit 0e6b9a1e5f
+5 -1
View File
@@ -27,13 +27,17 @@ import datetime
# ruby-ri-docs, meson:
#https://autobuilder.yocto.io/pub/repro-fail/oe-reproducible-20210215-0_td9la2/packages/diff-html/
# rust-llvm:
#https://autobuilder.yocto.io/pub/repro-fail/oe-reproducible-20210825-kaihham6/
exclude_packages = [
'glide',
'go-helloworld',
'go-runtime',
'go_',
'go-',
'ruby-ri-docs'
'ruby-ri-docs',
'rust-llvm-liblto',
'rust-llvm-staticdev'
]
def is_excluded(package):