From b691b927feae0094f2e2090a90cb5b84a35d5c8a Mon Sep 17 00:00:00 2001 From: Yassine Doghri <yassine@doghri.fr> Date: Thu, 6 May 2021 15:34:16 +0000 Subject: [PATCH] ci(tests): install intl php extension --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f93745e612..aa01fbfe90 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,6 +16,11 @@ before_script: # Install git (the php image doesn't have it) which is required by composer - apt-get install git -y + - apt-get install -y libicu-dev + + # Install intl PHP extension + - docker-php-ext-install intl + # install rsync for file transfers - apt-get install rsync -y -- GitLab