Attempt to use lighter docker images for gitlab builds

This commit is contained in:
Timothy Warren 2018-01-31 14:04:50 -05:00
parent fe7b0d698a
commit f15ea8ebb8
2 changed files with 5 additions and 4 deletions

View File

@ -5,7 +5,7 @@ before_script:
- php composer.phar install --ignore-platform-reqs - php composer.phar install --ignore-platform-reqs
services: services:
- mysql:latest - mysql:latest
- postgres:latest - postgres:alpine
variables: variables:
MYSQL_ROOT_PASSWORD: foo-bar-baz MYSQL_ROOT_PASSWORD: foo-bar-baz

View File

@ -13,7 +13,8 @@ set -xe
echo -e 'http://dl-cdn.alpinelinux.org/alpine/edge/main\nhttp://dl-cdn.alpinelinux.org/alpine/edge/community\nhttp://dl-cdn.alpinelinux.org/alpine/edge/testing' > /etc/apk/repositories echo -e 'http://dl-cdn.alpinelinux.org/alpine/edge/main\nhttp://dl-cdn.alpinelinux.org/alpine/edge/community\nhttp://dl-cdn.alpinelinux.org/alpine/edge/testing' > /etc/apk/repositories
apk add --no-cache \ apk add --no-cache \
curl \ curl \
git git \
postgresql-dev
# Install phpunit, the tool that we will use for testing # Install phpunit, the tool that we will use for testing
curl -Lo /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar curl -Lo /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar
@ -25,8 +26,8 @@ mv "$DIR/../tests/settings-ci.json" "$DIR/../tests/settings.json"
# Install mysql driver # Install mysql driver
# Here you can install any other extension that you need # Here you can install any other extension that you need
docker-php-ext-install pdo_mysql docker-php-ext-install pdo pdo_mysql pdo_pgsql
docker-php-ext-install pdo_pgsql #docker-php-ext-install pdo_pgsql
#docker-php-ext-install pdo_oci #docker-php-ext-install pdo_oci
#docker-php-ext-install interbase #docker-php-ext-install interbase
#docker-php-ext-install pdo_firebird #docker-php-ext-install pdo_firebird