]> git.apps.os.sepia.ceph.com Git - ceph-build.git/commitdiff
build_utils.sh: Disable CI_CONTAINER for nautilus too 1920/head
authorDavid Galloway <dgallowa@redhat.com>
Mon, 18 Oct 2021 19:41:14 +0000 (15:41 -0400)
committerDavid Galloway <dgallowa@redhat.com>
Mon, 18 Oct 2021 19:41:14 +0000 (15:41 -0400)
Brad and Yuri are working on something for downstream and need some branches built in ceph-ci.git based on the nautilus branch.  The builds keep showing up as failed in shaman because the container is failing to build.  This minor change fixes that.

Signed-off-by: David Galloway <dgallowa@redhat.com>
scripts/build_utils.sh

index 3f9c9375b337cc9c2cf3c65f4f471ea8ab3ea1cf..bc9f60eb1bf3d54b09badc2c0e9598052d8e4b5b 100644 (file)
@@ -1547,7 +1547,7 @@ maybe_reset_ci_container() {
     if ! "$CI_CONTAINER"; then
         return
     fi
-    if [[ "$BRANCH" =~ octopus|pacific && "$DIST" == el7 ]]; then
+    if [[ "$BRANCH" =~ nautilus|octopus|pacific && "$DIST" == el7 ]]; then
         echo "disabling CI container build for $BRANCH"
         CI_CONTAINER=false
     fi