From 8313d8a2faf8423cacef7acc88bc385201beb05d Mon Sep 17 00:00:00 2001 From: Dowan Gullient Date: Fri, 6 Mar 2026 15:23:29 +0100 Subject: [PATCH] support/testing/infra: update artifacts URL to https and .org domain The artifacts URL has been moved to https and domain to .org to improve security and avoid redirection issues. This ensures that downloads of kernels and rootfs images during runtime tests are encrypted and verified. The change has been tested by running a runtime test, confirming the correct download and renaming of artifacts from the new URL: Downloading to .../tmpyotq8uor Renaming from .../tmpyotq8uor to .../kernel-versatile-5.10.202 Signed-off-by: Dowan Gullient Signed-off-by: Julien Olivain --- support/testing/infra/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/testing/infra/__init__.py b/support/testing/infra/__init__.py index be61d8cc4f..98215e02ab 100644 --- a/support/testing/infra/__init__.py +++ b/support/testing/infra/__init__.py @@ -6,7 +6,7 @@ import subprocess from urllib.request import urlopen from urllib.error import HTTPError, URLError -ARTIFACTS_URL = "http://autobuild.buildroot.net/artefacts/" +ARTIFACTS_URL = "https://autobuild.buildroot.org/artefacts/" BASE_DIR = os.path.realpath(os.path.join(os.path.dirname(__file__), "../../.."))