summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/reproducible.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-26 08:03:27 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-26 22:09:44 +0100
commit0e6b9a1e5f6a256cc0d881a3a9b81761b7d26ac4 (patch)
tree5f6887e5b2d5f630d5cde3b898c2156d567fdf69 /meta/lib/oeqa/selftest/cases/reproducible.py
parentb7fc3113a7126121a9768549e3a839bbcb64fb71 (diff)
downloadpoky-0e6b9a1e5f6a256cc0d881a3a9b81761b7d26ac4.tar.gz
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>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/reproducible.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/reproducible.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py
index 910ef0d301..e4582cb82a 100644
--- a/meta/lib/oeqa/selftest/cases/reproducible.py
+++ b/meta/lib/oeqa/selftest/cases/reproducible.py
@@ -27,13 +27,17 @@ import datetime
27 27
28# ruby-ri-docs, meson: 28# ruby-ri-docs, meson:
29#https://autobuilder.yocto.io/pub/repro-fail/oe-reproducible-20210215-0_td9la2/packages/diff-html/ 29#https://autobuilder.yocto.io/pub/repro-fail/oe-reproducible-20210215-0_td9la2/packages/diff-html/
30# rust-llvm:
31#https://autobuilder.yocto.io/pub/repro-fail/oe-reproducible-20210825-kaihham6/
30exclude_packages = [ 32exclude_packages = [
31 'glide', 33 'glide',
32 'go-helloworld', 34 'go-helloworld',
33 'go-runtime', 35 'go-runtime',
34 'go_', 36 'go_',
35 'go-', 37 'go-',
36 'ruby-ri-docs' 38 'ruby-ri-docs',
39 'rust-llvm-liblto',
40 'rust-llvm-staticdev'
37 ] 41 ]
38 42
39def is_excluded(package): 43def is_excluded(package):