From 916e5efcc60a8ac07a53828cb235ad342ff5cae5 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Fri, 13 Feb 2026 13:25:37 +0100 Subject: [PATCH] fix: give cache:warmup more memory --- deployer/typo3-recipe.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployer/typo3-recipe.php b/deployer/typo3-recipe.php index a8182ac..1b8a69a 100644 --- a/deployer/typo3-recipe.php +++ b/deployer/typo3-recipe.php @@ -133,7 +133,7 @@ task('typo3:cache:flush', function () { task('typo3:cache:warmup', function () { cd('{{release_or_current_path}}'); // Append exit code so run() won't throw before we can read the output - $result = run('{{bin/php}} -d display_errors=1 bin/typo3 cache:warmup 2>&1; echo EXIT_CODE:$?'); + $result = run('{{bin/php}} -d display_errors=1 -d memory_limit=512M bin/typo3 cache:warmup 2>&1; echo EXIT_CODE:$?'); if (!str_contains($result, 'EXIT_CODE:0')) { throw new \RuntimeException("cache:warmup failed:\n" . $result); }