From af74fd1fd82ab0e6491dd3b977afa47d5b25cb9f Mon Sep 17 00:00:00 2001 From: Boris Waaub Date: Wed, 4 Feb 2026 16:50:48 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20de=20la=20limite=20de=20m=C3=A9moire=20?= =?UTF-8?q?pour=20Composer=20et=20nettoyage=20du=20cache=20avant=20l'insta?= =?UTF-8?q?llation,=20suppression=20de=20la=20construction=20dans=20le=20j?= =?UTF-8?q?ob=20vue-tsc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6266274d7..f50462c86 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -96,10 +96,13 @@ mirror_chill_zimbra_bundle: build: stage: Composer install image: chill/base-image:8.3-edge + variables: + COMPOSER_MEMORY_LIMIT: 3G before_script: - composer config -g cache-dir "$(pwd)/.cache" script: - composer install --optimize-autoloader --no-ansi --no-interaction --no-progress + - php bin/console cache:clear cache: paths: - .cache/ @@ -188,8 +191,6 @@ vue_tsc: - export PATH="./node_modules/.bin:$PATH" script: - yarn install --ignore-optional - - php bin/console cache:clear - - yarn build - yarn vue-tsc --noEmit > vue-tsc-report.txt 2>&1 || true - cat vue-tsc-report.txt - grep -q "error" vue-tsc-report.txt && exit 2 || exit 0