summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorJoshua Watt <jpewhacker@gmail.com>2019-08-30 20:41:24 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-09-06 12:45:46 +0100
commitc4569ec7bab58ed891c41438e2df45318d1b87c2 (patch)
tree6e7c7fd138b74a895512dbb3281f077cf5256bc6 /meta/lib
parent196561b6965af693563c86387f5d87665eaa2656 (diff)
downloadopenembedded-core-contrib-c4569ec7bab58ed891c41438e2df45318d1b87c2.tar.gz
oeqa: reproducible: Preserve sstate mirror for first build
Preserves the SSTATE_MIRROR variable for the first build in the reproducible test. This patch is intended to test the theory that using the Yocto autobuilder sstate mirror will still be reproducible. The autobuilder always does clean builds and never rebuilds recipes that were built previously, thus building with the mirror but not sharing tmpdir and sstate with previous builds should be reproducible. There is no guarantee that all sstate caches are populated from clean builds so this patch cannot be submitted to master, and I'm not bothering sending it to the mailing list. (From OE-Core rev: 6b8e0077339a89cb01aa40c1b367a4e41a638892) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/selftest/cases/reproducible.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py
index b3bbb70158..ffb405af20 100644
--- a/meta/lib/oeqa/selftest/cases/reproducible.py
+++ b/meta/lib/oeqa/selftest/cases/reproducible.py
@@ -134,7 +134,6 @@ class ReproducibleTests(OESelftestTestCase):
INHERIT += "reproducible_build"
PACKAGE_CLASSES = "%s"
SSTATE_DIR = "${TMPDIR}/sstate"
- SSTATE_MIRROR = ""
''') % (' '.join('package_%s' % c for c in self.package_classes))
# Perform a build.
@@ -154,6 +153,7 @@ class ReproducibleTests(OESelftestTestCase):
bb.utils.remove(reproducibleB_tmp, recurse=True)
self.write_config((textwrap.dedent('''\
+ SSTATE_MIRROR = ""
TMPDIR = "%s"
''') % reproducibleB_tmp) + common_config)
vars_B = get_bb_vars(capture_vars)