diff mbox series

reproducible: Exclude rust for now again

Message ID 20231013105302.231475-1-richard.purdie@linuxfoundation.org
State Accepted, archived
Commit ab03b3416dda65e39a756c02d87492e1fe5e0fb0
Headers show
Series reproducible: Exclude rust for now again | expand

Commit Message

Richard Purdie Oct. 13, 2023, 10:53 a.m. UTC
Unfortunately there is still an issue with rustdoc not being reproducible
so part of the problem has been fixed but not everything.

Add the exclusion back until this has been addressed to avoid autobuilder
failures and long diffoscope analysis time.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 meta/lib/oeqa/selftest/cases/reproducible.py | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py
index 9b4a0887dd9..84c6c3a05ff 100644
--- a/meta/lib/oeqa/selftest/cases/reproducible.py
+++ b/meta/lib/oeqa/selftest/cases/reproducible.py
@@ -16,6 +16,8 @@  import os
 import datetime
 
 exclude_packages = [
+	'rust',
+	'rust-dbg'
 	]
 
 def is_excluded(package):