From 5d1efa13ea47d49cd604c1880cd973d151e2ba82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Sat, 3 Oct 2015 01:12:48 +0200 Subject: [PATCH] install git on image --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 77f7b66ad..12fc9e5a4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,11 @@ +image: chill/standard-fpm services: - postgres:9.4 before_script: + - cd /tmp + - apt-get install -qy git - composer install --dev - cp Tests/Fixtures/App/config/parameters.travis.yml Tests/Fixtures/App/config/parameters.yml - psql -c 'create database test0;' -U postgres