From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 2FECA2D9EE0 for ; Mon, 11 Aug 2025 22:43:10 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1754952191; cv=none; b=DmRP0D4vJtPuGQKba+HfbO7A9S33yBcFXOWiynGV/zDdcMzk/q0FEk4twJ+r5cWRxN5mpUogZmJT5BHc5w6s3XFmwk7uQrhZAbsjJaE64fJajcczbZ9okADW89NOTPOS5gMfAkmGX5GqZaWWVErazkqI7DZr7idTQzuji7Olqg8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1754952191; c=relaxed/simple; bh=01s7ypLGa0Knvqjw/8DindpMFqxBiHbqcf4kkwpIZ6s=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ACtwYqVKSFBkp7EgatmFycv+/6rmfDNlTKxlaSsa5qy4YrPyGP4Jwn0LtxTdAwT8ZnsodrvRHg8oc541gWv8Io+bloI5ztig+WKRDJzrXXLLYf7gVC8yiHAoXo/rNqx976ncO6GXywxrWxiSISFtimyAROBZXTfpuS+f5Us3KM8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=kernel.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=wPvHtQ7E; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=kernel.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="wPvHtQ7E" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Sender:Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From: Reply-To:Content-Type:Content-ID:Content-Description; bh=AhSYfkOdKi2+wfs91apjmv6THVEkl6YtyeXJwUrei4E=; b=wPvHtQ7ELME5pnmIp9A6NWvNc7 U+/2FUFKj4ooHUScFMNK0+J/eiU/TzI8vRk4wrlpZ65oO5KrvnfubeqfoxCQy5yX7L7EA345rAgMR UdmFOvlsfsI4YKTHGqcDXGLcGO/AZ3dNAdOny6sthQWLfwY/sOCD+Oq8625QPBc1u8m5xE8tDld24 0HtDx4XvV+f0aPV5YHTKeUvFgVkSkju19dyB15I1Av04hIgpJ9h/9i40nPCXp+pxVrzilLkcnc8xJ NAmlmu6rG2h1OACoTg5CDJEcLWwevVm9kbrnyqNYwWMFozPoVf/aOV1MeDMYhgNSYA5iqXbUC4ffR 7J3Wbyww==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.98.2 #2 (Red Hat Linux)) id 1ulbET-00000009J8A-3FTR; Mon, 11 Aug 2025 22:43:09 +0000 From: Luis Chamberlain To: Chuck Lever , Daniel Gomez , kdevops@lists.linux.dev Cc: Luis Chamberlain Subject: [PATCH 1/8] bootlinux: use different kernel for A/B testing by default Date: Mon, 11 Aug 2025 15:43:00 -0700 Message-ID: <20250811224307.2218478-2-mcgrof@kernel.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250811224307.2218478-1-mcgrof@kernel.org> References: <20250811224307.2218478-1-mcgrof@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: Luis Chamberlain If you are doing A/B testing then by default you'd want to test different kernels typically. So enable that by default. This will help make our CIs easier to write leveraging defconfigs with less crap in them. Signed-off-by: Luis Chamberlain --- workflows/linux/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflows/linux/Kconfig b/workflows/linux/Kconfig index 44456904..aa7c6ec8 100644 --- a/workflows/linux/Kconfig +++ b/workflows/linux/Kconfig @@ -385,7 +385,7 @@ if KDEVOPS_BASELINE_AND_DEV choice prompt "A/B kernel testing configuration" - default BOOTLINUX_AB_SAME_REF + default BOOTLINUX_AB_DIFFERENT_REF help When A/B testing is enabled, you can choose to use the same kernel reference for both baseline and dev nodes, or specify -- 2.47.2