Update gitlab ci build to include installation of sqlite3

This commit is contained in:
Timothy Warren 2016-07-15 16:02:09 -04:00
parent c60e768f4e
commit d5f7e4274d
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ services:
- postgres:latest
variables:
MYSQL_ROOT_PASSWORD: foo-bar-baz
MYSQL_DATABASE: test
MYSQL_USER: test
MYSQL_PASSWORD: test

View File

@ -7,7 +7,7 @@ set -xe
# Install git (the php image doesn't have it) which is required by composer
apt-get update -yqq
apt-get install git -yqq
apt-get install git sqlite -yqq
# Install phpunit, the tool that we will use for testing
curl -Lo /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar