From d5f7e4274d4927ea7e2557b0166e84ccbf15e0fd Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Fri, 15 Jul 2016 16:02:09 -0400 Subject: [PATCH] Update gitlab ci build to include installation of sqlite3 --- .gitlab-ci.yml | 1 + build/docker_install.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 55e3027..0fe9d53 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,6 +7,7 @@ services: - postgres:latest variables: + MYSQL_ROOT_PASSWORD: foo-bar-baz MYSQL_DATABASE: test MYSQL_USER: test MYSQL_PASSWORD: test diff --git a/build/docker_install.sh b/build/docker_install.sh index f29c307..4cf2b29 100644 --- a/build/docker_install.sh +++ b/build/docker_install.sh @@ -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