From 1bd7c6322815dc0c7731a9f8dd7753a8ae02e10a Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Wed, 19 Feb 2025 11:10:11 -0500 Subject: [PATCH] scripts: add build-with-container.py and friends to container_only_pr Add the build-with-container.py script and the helper shell script and Dockerfile that support the builder image to the container_only_pr patterns in build_utils.sh. This should save time and resources when contributing patches to only these files in the ceph/ceph repo. Signed-off-by: John Mulligan --- scripts/build_utils.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/build_utils.sh b/scripts/build_utils.sh index c4c5d6d6..44f28d27 100755 --- a/scripts/build_utils.sh +++ b/scripts/build_utils.sh @@ -1741,6 +1741,9 @@ container_pr_only() { CONTAINER_ONLY=false local patterns=( 'container/*' + 'Dockerfile.build' + 'src/script/buildcontainer-setup.sh' + 'src/script/build-with-container.py' ) if pr_only_for patterns; then CONTAINER_ONLY=true; fi } -- 2.39.5