From a8d7daf02a93f271f19c8ee668da2bbada753d69 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Wed, 20 Jul 2016 16:46:02 -0400 Subject: [PATCH] Install sqlite3 for gitlab ci --- test/docker_install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/docker_install.sh b/test/docker_install.sh index 9c54179..7009d6b 100644 --- a/test/docker_install.sh +++ b/test/docker_install.sh @@ -8,5 +8,9 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" set -xe +# Install sqlite3 +apt-get update -yqq +apt-get install sqlite3 libsqlite3-dev -yqq + # Replace test config with docker config file mv "$DIR/config-ci.json" "$DIR/config.json" \ No newline at end of file