diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-12-20 14:12:15 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-12-20 15:29:01 +0000 |
commit | 8d556a72ecfe34b58b4c53ce26540de961e0e09c (patch) | |
tree | 6ae8b37682e976ff823eb489ab2583e2a026c586 /meta/lib/oeqa | |
parent | 98729005649547b66e0c5dd8d1f469305ba9f0a4 (diff) | |
download | poky-8d556a72ecfe34b58b4c53ce26540de961e0e09c.tar.gz |
oeqa/selftest/bbtests: Use YP sources mirror instead of GNU
The gnu sources server has been known to disappear. Use the YP sources
mirror instead. If that breaks, the autobuilder is broken anyway. This
should reduce test failures from upstream network issues.
(From OE-Core rev: a5459e42f1a6be9c08f303653cc1f73514eca9ef)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/bbtests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/bbtests.py b/meta/lib/oeqa/selftest/cases/bbtests.py index a74576bc02..246cb032bf 100644 --- a/meta/lib/oeqa/selftest/cases/bbtests.py +++ b/meta/lib/oeqa/selftest/cases/bbtests.py | |||
@@ -160,7 +160,7 @@ SSTATE_DIR = \"${TOPDIR}/download-selftest\" | |||
160 | """) | 160 | """) |
161 | self.track_for_cleanup(os.path.join(self.builddir, "download-selftest")) | 161 | self.track_for_cleanup(os.path.join(self.builddir, "download-selftest")) |
162 | 162 | ||
163 | data = 'SRC_URI = "${GNU_MIRROR}/aspell/aspell-${PV}.tar.gz;downloadfilename=test-aspell.tar.gz"' | 163 | data = 'SRC_URI = "https://downloads.yoctoproject.org/mirror/sources/aspell-${PV}.tar.gz;downloadfilename=test-aspell.tar.gz"' |
164 | self.write_recipeinc('aspell', data) | 164 | self.write_recipeinc('aspell', data) |
165 | result = bitbake('-f -c fetch aspell', ignore_status=True) | 165 | result = bitbake('-f -c fetch aspell', ignore_status=True) |
166 | self.delete_recipeinc('aspell') | 166 | self.delete_recipeinc('aspell') |