From patchwork Wed Mar 26 18:12:03 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 59998 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3C5AAC3600E for ; Wed, 26 Mar 2025 18:12:21 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web11.29792.1743012732141222851 for ; Wed, 26 Mar 2025 11:12:12 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: ross.burton@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id E5A821424 for ; Wed, 26 Mar 2025 11:12:16 -0700 (PDT) Received: from cesw-amp-gbt-1s-m12830-04.lab.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 08AD03F58B for ; Wed, 26 Mar 2025 11:12:10 -0700 (PDT) From: Ross Burton To: meta-arm@lists.yoctoproject.org Subject: [PATCH 1/4] CI: use canonical git.yoctoproject.org URLs Date: Wed, 26 Mar 2025 18:12:03 +0000 Message-ID: <20250326181206.1287342-1-ross.burton@arm.com> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 26 Mar 2025 18:12:21 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/6414 The canonical repository URLs don't use /git/. Signed-off-by: Ross Burton --- ci/base.yml | 2 +- ci/update-repos | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/base.yml b/ci/base.yml index d1c933d0..fc182092 100644 --- a/ci/base.yml +++ b/ci/base.yml @@ -17,7 +17,7 @@ repos: meta-arm-toolchain: poky: - url: https://git.yoctoproject.org/git/poky + url: https://git.yoctoproject.org/poky layers: meta: meta-poky: diff --git a/ci/update-repos b/ci/update-repos index 069a94ea..ef69ee45 100755 --- a/ci/update-repos +++ b/ci/update-repos @@ -20,9 +20,9 @@ def repo_shortname(url): .replace('*', '.')) repositories = ( - "https://git.yoctoproject.org/git/poky", + "https://git.yoctoproject.org/poky", "https://git.openembedded.org/meta-openembedded", - "https://git.yoctoproject.org/git/meta-virtualization", + "https://git.yoctoproject.org/meta-virtualization", "https://github.com/kraj/meta-clang", )