Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
robertomonteromiguel committed May 15, 2024
1 parent 29f0775 commit 58eb3e1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion utils/build/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,9 @@ validate_lib_injection_group_data() {
#Used specifically for host-injection group to set the machine that we are going to use
WEBLOG_VARIANT_SUFIX=$(echo "${WEBLOG_VARIANT}"|grep -o "\..*$")||true
WEBLOG_VARIANT="${WEBLOG_VARIANT%%.*}"
echo "WEBLOG_VARIANT: $WEBLOG_VARIANT"
echo "WEBLOG_VARIANT_SUFIX: $WEBLOG_VARIANT_SUFIX"
echo "----> ${SCRIPT_DIR}/ssi/${TEST_LIBRARY}/${WEBLOG_VARIANT}/Dockerfile${WEBLOG_VARIANT_SUFIX}.${LIB_INJECTION_GROUP}"
#Check if variant exists on this group
if [ ! -f "${SCRIPT_DIR}/ssi/${TEST_LIBRARY}/${WEBLOG_VARIANT}/Dockerfile${WEBLOG_VARIANT_SUFIX}.${LIB_INJECTION_GROUP}" ]; then
echo "Variant [${WEBLOG_VARIANT}] for group [${LIB_INJECTION_GROUP}] not found"
Expand Down Expand Up @@ -395,7 +398,7 @@ if [[ "${BUILD_IMAGES}" =~ /weblog/ && ! -d "${SCRIPT_DIR}/docker/${TEST_LIBRARY
fi

# Check if we are working with a different group of weblogs different from the default system-tests
if [ -n $LIB_INJECTION_GROUP ]; then
if [ -n ${LIB_INJECTION_GROUP+x} ]; then
validate_lib_injection_group_data
else
#Default system-tests build
Expand Down

0 comments on commit 58eb3e1

Please sign in to comment.