mirror of
https://git.yoctoproject.org/poky
synced 2026-04-09 02:02:26 +02:00
oeqa: reproducible: Add more logging
The reproducible build tests can take a long time, so having more logging messages at various points in the build can help debug where the build is taking a long time. (From OE-Core rev: 3ea201b2bcb40a3de6a2e36a43859fe354706b26) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 6b792afe8759d62af8e713b86dad8f6721961a05) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
b43ba849f9
commit
ceb37a91c1
@@ -187,6 +187,7 @@ class ReproducibleTests(OESelftestTestCase):
|
||||
SSTATE_MIRRORS = ""
|
||||
''')
|
||||
|
||||
self.logger.info("Building %s (sstate%s allowed)..." % (name, '' if use_sstate else ' NOT'))
|
||||
self.write_config(config)
|
||||
d = get_bb_vars(capture_vars)
|
||||
bitbake(' '.join(self.images))
|
||||
@@ -213,6 +214,7 @@ class ReproducibleTests(OESelftestTestCase):
|
||||
self.logger.info('Non-reproducible packages will be copied to %s', save_dir)
|
||||
|
||||
vars_A = self.do_test_build('reproducibleA', self.build_from_sstate)
|
||||
|
||||
vars_B = self.do_test_build('reproducibleB', False)
|
||||
|
||||
# NOTE: The temp directories from the reproducible build are purposely
|
||||
@@ -227,6 +229,7 @@ class ReproducibleTests(OESelftestTestCase):
|
||||
deploy_A = vars_A['DEPLOY_DIR_' + c.upper()]
|
||||
deploy_B = vars_B['DEPLOY_DIR_' + c.upper()]
|
||||
|
||||
self.logger.info('Checking %s packages for differences...' % c)
|
||||
result = self.compare_packages(deploy_A, deploy_B, diffutils_sysroot)
|
||||
|
||||
self.logger.info('Reproducibility summary for %s: %s' % (c, result))
|
||||
|
||||
Reference in New Issue
Block a user