From 237ed6720bd6aed9f5c76a490b673dc97097e4f3 Mon Sep 17 00:00:00 2001 From: Julio Date: Tue, 7 Mar 2023 14:33:19 -0500 Subject: [PATCH] container size increase to 16gb --- ci/container_size.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/container_size.sh b/ci/container_size.sh index 50309ad94..8f85900b6 100755 --- a/ci/container_size.sh +++ b/ci/container_size.sh @@ -9,4 +9,4 @@ echo "##################" cd / && NUMGB=$(du -sh --exclude "raid" 2> /dev/null | grep -oE '[0-9]*G' | grep -oE '[0-9]*') echo "Size of container is: $NUMGB GB" -if [ $NUMGB -ge 15 ]; then echo "Size of container exceeds 15GB, failed build." && exit 1 ; fi; +if [ $NUMGB -ge 16 ]; then echo "Size of container exceeds 16GB, failed build." && exit 1 ; fi;