From patchwork Thu Feb 6 10:44:21 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Gomez X-Patchwork-Id: 13962799 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 9A7FF18B03 for ; Thu, 6 Feb 2025 10:44:47 +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=1738838687; cv=none; b=Oyst54UVmthFpzz4LkDGAo5W90KGL9vtWFLFC05qJ+cgUoScLGs2pA+4DnunJPVvz/7EIA+6gDApjgdJFbGGGOvPTqofcw3I7WKS6XOtAYzbsbBB+wUY8GkPi0yDCYewCGW6NfkafP9BxSsqh/J2li1GydmmDepFLQd1oh7V2Xg= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738838687; c=relaxed/simple; bh=9i1twqoSu8M2alMf8Ac2Tff0LELGotcKcP4L3aVJC/c=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=gRePAQFyub/JOTA4U34B8h2bUQxV5gZB22i8d1uZzqojGZP363+M77fUzdyWuk+xRhqQiicKf3r9W++MKQLNmJNtXdMHVrO1zCVUSrNZ5hcNkA7C55yT2IxmnUQAawy7B/fD1bZdMKPKh63JwMfiRWiIFDJyuVe03eLrLKZeQBw= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=EuXGnz9J; 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="EuXGnz9J" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 49C1AC4CEDD; Thu, 6 Feb 2025 10:44:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1738838687; bh=9i1twqoSu8M2alMf8Ac2Tff0LELGotcKcP4L3aVJC/c=; h=From:Date:Subject:References:In-Reply-To:To:Cc:From; b=EuXGnz9J16WXWEMc+mp/Jl1zJwvP1bah+6Y1I0pHba+YCt/b+ILQQwGpHuyBs/DWJ JHzywjAulTrqr6gZ2mWrS+q058VNsMa20waN02DHH8Nou1upNmyTgeUeuW3R0sjDlO f3fMo0w/YeDL4hoj3MBsz27RgOtJ6OpxRbgCziHpciu/yTXCuzxkvr10cJ4x821o6E myCG4Cw2p6cAI1soXXJg9vPPkfW9zb5PjAuPnHDEBaA7O6YBceQ4btLRrdPLjY3xCj TsWHZHgvcbjvIx+K8Mkm+ZiUynIzDg8cLWnwhpj18gYztbai9LT5PMPfVyYIpCWvCx wHZ2rSkcmv9Sw== From: da.gomez@kernel.org Date: Thu, 06 Feb 2025 10:44:21 +0000 Subject: [PATCH v3 4/4] github/workflows/fstests.yml: use debug callback plugin Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Message-Id: <20250206-ansible_cfg3-v3-4-4588c8c07e22@samsung.com> References: <20250206-ansible_cfg3-v3-0-4588c8c07e22@samsung.com> In-Reply-To: <20250206-ansible_cfg3-v3-0-4588c8c07e22@samsung.com> To: Luis Chamberlain , Chuck Lever Cc: kdevops@lists.linux.dev, Daniel Gomez X-Mailer: b4 0.14.2 From: Daniel Gomez Use the new cli ANSIBLE_CFG_CALLBACK_PLUGIN to configure the debug callback plugin for CI. This keeps the output same level of verbosity for CI, before we change the default to dense. An alternative is to keep it dense but increase the Ansible verbosity level with AV= makefile parameter. Signed-off-by: Daniel Gomez --- .github/workflows/fstests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/fstests.yml b/.github/workflows/fstests.yml index 0cff94ab64aa6aa78cae9db6ed921cc24d9c3dac..4aeb2943546489bf0d91862a0f87cefb43d68454 100644 --- a/.github/workflows/fstests.yml +++ b/.github/workflows/fstests.yml @@ -39,6 +39,7 @@ jobs: KDEVOPS_TREE_REF="${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}" SHORT_PREFIX="$(echo ${KDEVOPS_TREE_REF:0:12})" make KDEVOPS_HOSTS_PREFIX="$SHORT_PREFIX" defconfig-xfs_reflink_4k + ANSIBLE_CFG_CALLBACK_PLUGIN="debug" - name: Run kdevops make run: |