From patchwork Tue May 21 18:13:25 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jon Mason X-Patchwork-Id: 43962 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 04856C25B74 for ; Tue, 21 May 2024 18:13:29 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.3119.1716315207436900315 for ; Tue, 21 May 2024 11:13:27 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: jon.mason@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 D05D1DA7 for ; Tue, 21 May 2024 11:13:50 -0700 (PDT) Received: from H24V3P4C17.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 8E7343F766 for ; Tue, 21 May 2024 11:13:26 -0700 (PDT) From: Jon Mason To: meta-arm@lists.yoctoproject.org Subject: [PATCH] CI: correct BB_HASHSERVE_UPSTREAM Date: Tue, 21 May 2024 14:13:25 -0400 Message-Id: <20240521181325.5629-1-jon.mason@arm.com> X-Mailer: git-send-email 2.39.3 (Apple Git-146) 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 ; Tue, 21 May 2024 18:13:29 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/5747 The BB_HASHSERVE_UPSTREAM has issues which cause significantly less of a match than expected. Update with the correct values to get the expected behavior. Fixes: 6e9525115bd4 ("CI: add Yocto Project SSTATE Mirror") Signed-off-by: Jon Mason --- ci/sstate-mirror.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/sstate-mirror.yml b/ci/sstate-mirror.yml index 6e4a97eb1275..4bcbd760c59f 100644 --- a/ci/sstate-mirror.yml +++ b/ci/sstate-mirror.yml @@ -5,7 +5,7 @@ header: local_conf_header: sstate_mirror: | - BB_HASHSERVE_UPSTREAM = "hashserv.yocto.io:8687" + BB_HASHSERVE_UPSTREAM = "wss://hashserv.yoctoproject.org/ws" SSTATE_MIRRORS = "file://.* http://cdn.jsdelivr.net/yocto/sstate/all/PATH;downloadfilename=PATH" BB_HASHSERVE = "auto" BB_SIGNATURE_HANDLER = "OEEquivHash"