From patchwork Sun Oct 13 15:30:53 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 13833465 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 45B2E156CF for ; Sun, 13 Oct 2024 15:31:00 +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=1728833460; cv=none; b=W4oyzGq0Ggd+PHUksd7pBrstYCntrVjKT5nphQSCVH6cfgs8kaxKpbwdBt8lfhUnvpm0prKa+nJOKTZT+AzMd1JNqEal/Yd5UWlDphoUn3gzN3dk4/n2DutZVL7hMYAQVmvkUbeEj6rkzDSpaO0sk6GN2ixm/c8PCaCX/qi2IXQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728833460; c=relaxed/simple; bh=yqyTqUPByvlXmRa+UA/cJxC2V/HETMKkWDM8gHnIUQU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=bnb7y2EN5YMw/X57q3Dik406MkzqtcRvNU5LCplTVD56bRmuBRbcx6/osA0S694wvlbq3DDyqrlIfMa+z1iJS9Ts5MKGNDwtFv/+sBaJTKf1TEGXS9eR/XIDZt6ZZGj5pQyhtDghIick3JUxty9SC9GgM/BUaWvjeBr21F/e/4U= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=YQelBFrf; 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="YQelBFrf" Received: by smtp.kernel.org (Postfix) with ESMTPSA id BAAB9C4CECF; Sun, 13 Oct 2024 15:30:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1728833460; bh=yqyTqUPByvlXmRa+UA/cJxC2V/HETMKkWDM8gHnIUQU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YQelBFrfL5vKgtLPLYbs8tGOsSFiDhA/ZnnoAS/Qd24ql7HlSyn42WHQNZlioNk5s YfBCF91tBAXhOOR4P2NBK/q/6vSkFKkHrOTDxxWtHwhc7F1i2VJlNAeFv4jbSco6V+ 1qNLpIDaIZu+FN2lk0GOGSoxZZJ1bo2w/HNWrxanrHpogCuzVawqPkylGm7BgzV5s8 pafE8Equbv5j0hYorkchgo44NdUBJPTbkSPu1lZJcy8TFxRiWOHjHHvH1FnUX/aVgw CY6sMBGQeVcp1jyMmVBpCNuSwSopr3jgeHCXELjYAexVRXCPbDX01MX8b0iefEODJg pO8pY1AbSyGsg== From: cel@kernel.org To: Cc: Chuck Lever Subject: [PATCH 2/2] gitr: Update default git version to be cloned Date: Sun, 13 Oct 2024 11:30:53 -0400 Message-ID: <20241013153053.1431805-2-cel@kernel.org> X-Mailer: git-send-email 2.46.1 In-Reply-To: <20241013153053.1431805-1-cel@kernel.org> References: <20241013153053.1431805-1-cel@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Chuck Lever A few of the git regression tests that passed on Fedora 39 hosts now fail on Fedora 40. This seems to have been addressed in git-2.46.0, the latest stable git version as of this writing. But the newer unit tests seem to require more disk space than the meager 5GB currently used as the default. Signed-off-by: Chuck Lever --- playbooks/roles/gitr/tasks/main.yml | 2 +- workflows/gitr/Kconfig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/roles/gitr/tasks/main.yml b/playbooks/roles/gitr/tasks/main.yml index 2eafeaa2f120..faf1fff75ce0 100644 --- a/playbooks/roles/gitr/tasks/main.yml +++ b/playbooks/roles/gitr/tasks/main.yml @@ -183,7 +183,7 @@ export_volname: "{{ gitr_nfs_server_export }}" export_options: "{{ nfsd_export_options }}" export_fstype: "{{ gitr_nfs_export_fstype }}" - export_size: 5g + export_size: 10g export_pnfs: "{{ (gitr_test_group == 'nfs-pnfs') | bool }}" when: - gitr_nfs_use_kdevops_nfsd|bool diff --git a/workflows/gitr/Kconfig b/workflows/gitr/Kconfig index 05bac614fee3..8de23252208a 100644 --- a/workflows/gitr/Kconfig +++ b/workflows/gitr/Kconfig @@ -82,7 +82,7 @@ config GITR_REPO config GITR_REPO_COMMIT string "The version of git to check out" - default "v2.43.0" + default "v2.46.0" help The commit to be used for the test.