From: Joshua Watt Date: Sun, 14 Feb 2021 19:12:41 +0000 (-0600) Subject: oeqa: reproducible: Fix SSTATE_MIRRORS variable X-Git-Tag: 2020-10.3-gatesgarth~88 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=99fc5a5847b82620904a0e120d92cad6bb79021a;p=openembedded-core.git oeqa: reproducible: Fix SSTATE_MIRRORS variable The SSTATE_MIRRORS variable was misspelled, which allowed the "clean" test build to pull from the mirror. Signed-off-by: Joshua Watt Signed-off-by: Richard Purdie (cherry picked from commit e42497bd84d0bb370a9f7b0448bff29f01fd1b0c) Signed-off-by: Anuj Mittal --- diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py index a7ef336143..2d675f1771 100644 --- a/meta/lib/oeqa/selftest/cases/reproducible.py +++ b/meta/lib/oeqa/selftest/cases/reproducible.py @@ -184,7 +184,7 @@ class ReproducibleTests(OESelftestTestCase): # mirror, forcing a complete build from scratch config += textwrap.dedent('''\ SSTATE_DIR = "${TMPDIR}/sstate" - SSTATE_MIRROR = "" + SSTATE_MIRRORS = "" ''') self.write_config(config)