diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-26 08:03:27 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-26 22:09:44 +0100 |
commit | 0e6b9a1e5f6a256cc0d881a3a9b81761b7d26ac4 (patch) | |
tree | 5f6887e5b2d5f630d5cde3b898c2156d567fdf69 /meta/lib | |
parent | b7fc3113a7126121a9768549e3a839bbcb64fb71 (diff) | |
download | poky-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')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/reproducible.py | 6 |
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/ | ||
30 | exclude_packages = [ | 32 | exclude_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 | ||
39 | def is_excluded(package): | 43 | def is_excluded(package): |