mirror of
https://git.yoctoproject.org/poky
synced 2026-09-20 03:49:32 +02:00
selftest/reproducible: Allow native/cross reuse in test
We don't compare reproducibility of the native/cross components, only the target ones. With the long build times of rust-native, the test now takes crazy lengths of time so this tweak should allow us to reuse native/cross artefacts from sstate whilst still testing the target output is reproducible. (From OE-Core rev: b494d83c639a877cefeb7cbab6d37195e492f059) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -151,7 +151,7 @@ class ReproducibleTests(OESelftestTestCase):
|
|||||||
|
|
||||||
def setUpLocal(self):
|
def setUpLocal(self):
|
||||||
super().setUpLocal()
|
super().setUpLocal()
|
||||||
needed_vars = ['TOPDIR', 'TARGET_PREFIX', 'BB_NUMBER_THREADS']
|
needed_vars = ['TOPDIR', 'TARGET_PREFIX', 'BB_NUMBER_THREADS', 'BB_HASHSERVE']
|
||||||
bb_vars = get_bb_vars(needed_vars)
|
bb_vars = get_bb_vars(needed_vars)
|
||||||
for v in needed_vars:
|
for v in needed_vars:
|
||||||
setattr(self, v.lower(), bb_vars[v])
|
setattr(self, v.lower(), bb_vars[v])
|
||||||
@@ -225,7 +225,7 @@ class ReproducibleTests(OESelftestTestCase):
|
|||||||
# mirror, forcing a complete build from scratch
|
# mirror, forcing a complete build from scratch
|
||||||
config += textwrap.dedent('''\
|
config += textwrap.dedent('''\
|
||||||
SSTATE_DIR = "${TMPDIR}/sstate"
|
SSTATE_DIR = "${TMPDIR}/sstate"
|
||||||
SSTATE_MIRRORS = ""
|
SSTATE_MIRRORS = "file://.*/.*-native.* http://sstate.yoctoproject.org/all/PATH;downloadfilename=PATH file://.*/.*-cross.* http://sstate.yoctoproject.org/all/PATH;downloadfilename=PATH"
|
||||||
''')
|
''')
|
||||||
|
|
||||||
self.logger.info("Building %s (sstate%s allowed)..." % (name, '' if use_sstate else ' NOT'))
|
self.logger.info("Building %s (sstate%s allowed)..." % (name, '' if use_sstate else ' NOT'))
|
||||||
|
|||||||
Reference in New Issue
Block a user