Skip to content
Snippets Groups Projects
Commit 240ccdf0 authored by jurgenhaas's avatar jurgenhaas
Browse files

#2 Add support for variable INITIAL_INSTALL set to yes to...

#2 Add support for variable INITIAL_INSTALL set to yes to trigger the initial installation of a Drupal site without DB and without tests
parent 00e4dddb
No related branches found
No related tags found
No related merge requests found
......@@ -97,6 +97,8 @@ stages:
INITIALINSTALL="no"
if [[ "$CI_COMMIT_MESSAGE" == *"[INITIAL_INSTALL]"* ]]; then
INITIALINSTALL="yes"
elif [[ "$INITIAL_INSTALL" == "yes" ]]; then
INITIALINSTALL="yes"
fi
echo "INITIALINSTALL=${INITIALINSTALL}" >> validation.env
except:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment