oeqa/sdk/cases/autotools.py: use gnu mirror instead of main server

ftp.gnu.org is the main server of the GNU project, however download speed
can vary greatly based on one's location.

Using ftpmirror.gnu.org should redirect the request to the closest up-to-date mirror,
which should result sometimes in significantly faster download speed, depending
on one's location. This should also distribute the traffic more across the mirrors.

This information was sourced from https://www.gnu.org/prep/ftp.html

(From OE-Core rev: f3046716c9c565e6f65d5169694cd3da126cfaeb)

Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Steve Sakoman
2025-10-08 19:31:23 -07:00
committed by Richard Purdie
parent b6f442ceb5
commit 8f3b2a4d46

View File

@@ -27,7 +27,7 @@ class AutotoolsTest(OESDKTestCase):
pmv = parallel_make_value((self.td.get('PARALLEL_MAKE') or '').split())
with tempfile.TemporaryDirectory(prefix="cpio-", dir=self.tc.sdk_dir) as testdir:
tarball = self.fetch(testdir, self.td["DL_DIR"], "https://ftp.gnu.org/gnu/cpio/cpio-2.15.tar.gz")
tarball = self.fetch(testdir, self.td["DL_DIR"], "https://ftpmirror.gnu.org/gnu/cpio/cpio-2.15.tar.gz")
opts = {}
opts["source"] = os.path.join(testdir, "cpio-2.15")