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 399202D94A3 for ; Wed, 10 Sep 2025 19:38:52 +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=1757533133; cv=none; b=WLQAvsNLOD1kjImQXp6TwANjL4B66s6+CQwRgqQQtYh+36jvPOBtKwsb3kpBetfVN6rt6uhrBENO0YyOiPMUpaaiW5ZzFA4bL32/i4kxLYRiUVxXuaktKwmplEeB9sJ5BRWLCPkqjEAIzvbQ/gseIdsquIC9OrrDm0N2PCJ/wUQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1757533133; c=relaxed/simple; bh=aRoGf8xvXEBf3UyXsyZbl1P4yl7HiaJxyV9mCW/Se5U=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=cIScyGjXV4GJuaw9O9CbNSIk/SsXh6E/C2RJIqzX3NKJt03Qnxu9Rh4iGxyu1WAqp1t6/r6XQkPwYdNC/SvUhGImpM4zfPfStAR8YxcnIustNHImFku8uEpc20o+ehT4QhjH888bNa3yJFPRLigNW2+TjGcXXpsTeg9beSRwJ+8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=tU7Q5yse; 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="tU7Q5yse" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8F637C4CEF9; Wed, 10 Sep 2025 19:38:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1757533132; bh=aRoGf8xvXEBf3UyXsyZbl1P4yl7HiaJxyV9mCW/Se5U=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=tU7Q5yseG2BgbEquaDqnB9nku/dszff4YAWZ7ThmEKrXDvEPoZ7rPJt4GSr7Satvo A43VlS6VMqalEdOFBrlx/cDx+tb3WEnaX7GcnMY8BRS8h5Yc1lARwDjHQPKl+9stYr GNcpiN/45Iu1jRsgfbFTA28lkHf6UWO15PAAGTNOruWJswoZaW4Xy9hOhs62tuVkUj TJ1791HuqMlp7SCcOserBbBwB8oCXg+QyRuhijoYTog9UDhgOPUKzf8B+zsTW8yjBB aXf+v2A47hBQhQ0ayv5AoDIbEXlNGm83Dol3ZVJEdKBin88EzJsEhyLmwGkdjAzQQt LRIG9tq6zg0lA== From: Chuck Lever To: Cc: Chuck Lever Subject: [PATCH v1 4/8] gen_hosts: Restore missing groups to the fstests hosts template Date: Wed, 10 Sep 2025 15:38:44 -0400 Message-ID: <20250910193849.779453-5-cel@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250910193849.779453-1-cel@kernel.org> References: <20250910193849.779453-1-cel@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 From: Chuck Lever Eliminate this warning: [WARNING]: Could not match supplied host pattern, ignoring: dev The [dev] group has to exist because some Makefiles specify it explicitly. It can be empty, though. Fixes: 40df5ef72d19 ("gen_hosts: use kdevops_workflow_name directly for template selection") Signed-off-by: Chuck Lever --- playbooks/roles/gen_hosts/templates/workflows/fstests.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/roles/gen_hosts/templates/workflows/fstests.j2 b/playbooks/roles/gen_hosts/templates/workflows/fstests.j2 index 362ce955c1bf..7799fec32b4b 100644 --- a/playbooks/roles/gen_hosts/templates/workflows/fstests.j2 +++ b/playbooks/roles/gen_hosts/templates/workflows/fstests.j2 @@ -19,16 +19,16 @@ ansible_python_interpreter = "{{ kdevops_python_interpreter }}" [baseline:vars] ansible_python_interpreter = "{{ kdevops_python_interpreter }}" -{% if kdevops_baseline_and_dev %} [dev] +{% if kdevops_baseline_and_dev %} {% for node_section in fstests_enabled_test_types %} {{ kdevops_host_prefix }}-{{ node_section }}-dev {% endfor %} +{% endif %} [dev:vars] ansible_python_interpreter = "{{ kdevops_python_interpreter }}" -{% endif %} [fstests] {% for node_section in fstests_enabled_test_types %} {{ kdevops_host_prefix }}-{{ node_section }} -- 2.51.0