Tidying up GitLab CI file

This commit is contained in:
Daniel Mason 2019-05-31 11:47:42 +12:00
parent 939f4e58a6
commit 4a396bdb78
3 changed files with 30 additions and 32 deletions

View file

@ -1,18 +0,0 @@
#!/bin/bash
# We need to install dependencies only for Docker
[[ ! -e /.dockerenv ]] && exit 0
set -xe
# Install git (the php image doesn't have it) which is required by composer
apt-get update -yqq
apt-get install git redis php-redis -yqq
# 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

View file

@ -1,8 +0,0 @@
daemonize yes
pidfile ./redis.pid
port 6379
bind 127.0.0.1
timeout 300
dbfilename dump.rdb
dir ./
loglevel debug