From: John Mulligan Date: Wed, 19 Feb 2025 16:10:11 +0000 (-0500) Subject: scripts: add build-with-container.py and friends to container_only_pr X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=1bd7c6322815dc0c7731a9f8dd7753a8ae02e10a;p=ceph-build.git 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 --- 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 }