]> git.apps.os.sepia.ceph.com Git - ceph-build.git/commitdiff
scripts: add build-with-container.py and friends to container_only_pr 2328/head
authorJohn Mulligan <jmulligan@redhat.com>
Wed, 19 Feb 2025 16:10:11 +0000 (11:10 -0500)
committerJohn Mulligan <jmulligan@redhat.com>
Wed, 19 Feb 2025 16:10:11 +0000 (11:10 -0500)
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 <jmulligan@redhat.com>
scripts/build_utils.sh

index c4c5d6d61658ae1bb945124767493e6bbf06257b..44f28d27df4232a67ec020fd305be19ec45b30c0 100755 (executable)
@@ -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
 }