]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commitdiff
oeqa/selftest/reproducibile: Exclude rust packages
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 26 Aug 2021 07:03:27 +0000 (08:03 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 26 Aug 2021 21:09:25 +0000 (22:09 +0100)
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.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/selftest/cases/reproducible.py

index 910ef0d301a2f7a0d0b3992bf9166f0093f3f593..e4582cb82a6a2abf5350c87ff805dc9dec096ae5 100644 (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):