commit 1ac1a2fa070d98a5485a355dfa8520de194019ca parent 8cfe9a1fa1942916579f928c1cd352ad0f1510ab Author: Florian Dold <florian@dold.me> Date: Tue, 9 Dec 2025 14:46:55 +0100 timeout Diffstat:
| M | scripts/demo/setup-sandcastle.sh | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/scripts/demo/setup-sandcastle.sh b/scripts/demo/setup-sandcastle.sh @@ -9,6 +9,7 @@ set -eu set -x +export LC_ALL="C.UTF-8" if [[ -n ${SANDCASTLE_SKIP_SETUP:-} ]]; then echo "skipping sandcastle setup, requested by environment var SANDCASTLE_SKIP_SETUP" @@ -1117,7 +1118,8 @@ if [[ ! -e /talerdata/sandcastle-drupal ]]; then composer create-project drupal/recommended-project:^10 sandcastle-drupal cd /talerdata/sandcastle-drupal composer require drush/drush - composer exec -- drush site-install demo_umami --account-name=admin --account-pass=admin --account-mail=admin@localhost --db-url=pgsql://drupal:$DRUPAL_DB_PW@localhost/drupal --site-name=SandcastleUmami --yes + # This can take a ridiculous amount of time! + COMPOSER_PROCESS_TIMEOUT=0 composer exec -- drush site-install demo_umami --account-name=admin --account-pass=admin --account-mail=admin@localhost --db-url=pgsql://drupal:$DRUPAL_DB_PW@localhost/drupal --site-name=SandcastleUmami --yes fi chown -R www-data:www-data /talerdata/sandcastle-drupal/