From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 1BF2651C4A for ; Fri, 28 Jun 2024 21:20:15 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1719609616; cv=none; b=lxjMfABWiibfJILTEqpFRXFRPlmr/mYHIei04W+HexRk7heugOr5lBVniJWAsyzOavNClyyvmlzV6/GGeCH57ljP2534ZFcNmgJyGCAJqG+3rJT9gcYiD02L0Eie+V/htWLDZuHEUQZyRSe/MEy462Yn//8Ua0j79GJDNbv+qck= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1719609616; c=relaxed/simple; bh=Pyov202OB9qV1ic1qjjaJJelXdiZ3q5tJvP+DSQa3Xo=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=KLZCAZQEguDqDcjojNi7ppeBO0hZ8ZpO2vKAKhmm+keC6w3ysFqKkni+9cXqPbZLmrylKWt5sktpTXMTiF8IZ3ZJosQE/cOhNmsZaQdtZyxpBsI7GGuxJWeFXaNfOkA+agWB44FXEQcCZsHJPWEe1a2qH4I3q+sNvDEUySASQqs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=bUlWj87h; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="bUlWj87h" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 55798C116B1; Fri, 28 Jun 2024 21:20:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1719609615; bh=Pyov202OB9qV1ic1qjjaJJelXdiZ3q5tJvP+DSQa3Xo=; h=From:To:Cc:Subject:Date:From; b=bUlWj87h8J4rqPIfK3B2b+aasDv9EIuCbIBTDt/oHG2bLyAcUXndx1A8+fQtv6pBn IzkdAiJxROQXSizWWxG82T90M6hT6EeuA9eksNhnS+X7FxZMuIVDEm6mHpa1GRRYXp QZYiQiD5i8kveRpO3HYJFCQYVY5j6wWlgcZT36Bhb3haKpwXZqVUUDZLLt5Ajec+ee Qwtr9trfwvAYtyAZwBdYZSX56ObsNAVTT6ce56Mzgh0aW/Bhc+bT6fX1npG2+x1QBW 2njdXCeFD9FWsrkXUOpJWz/rFqORbGMhVCMjWXz2yKf1OrTfv3YloWbsjHtibtC0Gf XFdH7+KzKtFwg== From: cel@kernel.org To: Cc: Chuck Lever Subject: [PATCH] linux: Edit cel-linux.yaml Date: Fri, 28 Jun 2024 17:20:09 -0400 Message-ID: <20240628212009.1548807-1-cel@kernel.org> X-Mailer: git-send-email 2.45.2 Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Chuck Lever Add the nfsd-testing testing branch, and correct a typo. Signed-off-by: Chuck Lever --- workflows/linux/refs/default/Kconfig.cel-linux | 12 +++++++++--- workflows/linux/refs/static/cel-linux.yaml | 8 ++++++-- 2 files changed, 15 insertions(+), 5 deletions(-) I'm having some trouble getting this new infrastructure to work. "make menuconfig" leaves this line in .config: CONFIG_BOOTLINUX_TREE_REF="BOOTLINUX_TREE_CEL_REF" And then "make bringup" fails to clone Linux because that's not a valid ref. diff --git a/workflows/linux/refs/default/Kconfig.cel-linux b/workflows/linux/refs/default/Kconfig.cel-linux index 692236e94dbd..56071e65328b 100644 --- a/workflows/linux/refs/default/Kconfig.cel-linux +++ b/workflows/linux/refs/default/Kconfig.cel-linux @@ -12,9 +12,14 @@ config BOOTLINUX_TREE_CEL_LINUX_REF_NEXT Pull the nfsd-next branch. config BOOTLINUX_TREE_CEL_LINUX_REF_FIXES - bool "nfsd-fixed" + bool "nfsd-fixes" help - Pull the nfsd-fixed branch. + Pull the nfsd-fixes branch. + +config BOOTLINUX_TREE_CEL_LINUX_REF_TESTING + bool "nfsd-testing" + help + Pull the nfsd-testing branch. config BOOTLINUX_TREE_CEL_LINUX_REF_CUSTOM bool "custom" @@ -26,7 +31,8 @@ endchoice config BOOTLINUX_TREE_CEL_LINUX_REF string default "nfsd-next" if BOOTLINUX_TREE_CEL_LINUX_REF_NEXT - default "nfsd-fixed" if BOOTLINUX_TREE_CEL_LINUX_REF_FIXES + default "nfsd-fixes" if BOOTLINUX_TREE_CEL_LINUX_REF_FIXES + default "nfsd-testing" if BOOTLINUX_TREE_CEL_LINUX_REF_TESTING default BOOTLINUX_CEL_LINUX_CUSTOM_REF_NAME if BOOTLINUX_TREE_CEL_LINUX_REF_CUSTOM endif # !HAVE_BOOTLINUX_TREE_CEL_LINUX_USER_REFS diff --git a/workflows/linux/refs/static/cel-linux.yaml b/workflows/linux/refs/static/cel-linux.yaml index bba35efb8214..8b94b9f3449c 100644 --- a/workflows/linux/refs/static/cel-linux.yaml +++ b/workflows/linux/refs/static/cel-linux.yaml @@ -6,8 +6,12 @@ configs: help: "Pull the nfsd-next branch." - fixes: config: BOOTLINUX_TREE_CEL_LINUX_REF_FIXES - ref: "nfsd-fixed" - help: "Pull the nfsd-fixed branch." + ref: "nfsd-fixes" + help: "Pull the nfsd-fixes branch." + - testing: + config: BOOTLINUX_TREE_CEL_LINUX_REF_TESTING + ref: "nfsd-testing" + help: "Pull the nfsd-testing branch." - custom: config: BOOTLINUX_TREE_CEL_LINUX_REF_CUSTOM ref: BOOTLINUX_CEL_LINUX_CUSTOM_REF_NAME -- 2.45.2