Skip to content

Commit a92f9c1

Browse files
committed
ci: allow to build ignoring dependencies
1 parent eec1713 commit a92f9c1

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

stackgres-k8s/ci/build/build.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ if [ "$#" -gt 0 ]
1717
then
1818
MODULES="$*"
1919

20+
ORIGINAL_MODULES="$MODULES"
21+
2022
COMPLETED_MODULES=""
2123

2224
for MODULE in $MODULES
@@ -85,6 +87,12 @@ fi
8587

8688
echo "Building: $MODULES"
8789

90+
if [ "$SKIP_DEPENDENCIES" = true ]
91+
then
92+
MODULES="$ORIGINAL_MODULES"
93+
fi
94+
95+
8896
for MODULE in $MODULES
8997
do
9098
build_image "$MODULE"

0 commit comments

Comments
 (0)