From 6bedeaab5f7763bc6a89a243645f165fb57b0f63 Mon Sep 17 00:00:00 2001 From: Daniel Mason Date: Fri, 31 May 2019 11:50:32 +1200 Subject: [PATCH] php-redis != phpredis --- .gitlab-ci.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ee7b5e1..2f4b724 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,19 +1,3 @@ -.docker_boostrap: &docker_boostrap | - [[ ! -e /.dockerenv ]] && exit 0 - set -xe - - # Install git (the php image doesn't have it) which is required by composer - apt-get update -yq - apt-get install git redis-server php-redis -y - - # Install phpunit, the tool that we will use for testing - curl --location --output /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar - chmod +x /usr/local/bin/phpunit - - # Install mysql driver - # Here you can install any other extension that you need - docker-php-ext-install redis - # Test PHP 7.0 test:7.0: image: php:7.0 @@ -43,3 +27,19 @@ test:7.2: - phpunit --configuration phpunit.xml.dist tags: - docker + +.docker_boostrap: &docker_boostrap | + [[ ! -e /.dockerenv ]] && exit 0 + set -xe + + # Install git (the php image doesn't have it) which is required by composer + apt-get update -yq + apt-get install git redis-server phpredis -y + + # Install phpunit, the tool that we will use for testing + curl --location --output /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar + chmod +x /usr/local/bin/phpunit + + # Install mysql driver + # Here you can install any other extension that you need + docker-php-ext-install redis