From a178ac86c63daf9ab4c993f2ec828d07ae575b78 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Mon, 18 Jul 2016 09:47:34 -0400 Subject: [PATCH] First attempt at setting up gitlab ci --- .gitlab-ci.yml | 21 +++++++++++++++++++++ build/docker_install.sh | 22 ++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 .gitlab-ci.yml create mode 100644 build/docker_install.sh diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..b74a5032 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,21 @@ +before_script: + # Install dependencies + - bash build/docker_install.sh > /dev/null + +services: + - redis:latest + +test:5.5: + image: php:5.5 + script: + - phpunit -c build + +test:5.6: + image: php:5.6 + script: + - phpunit -c build + +test:7: + image: php:7 + script: + - phpunit -c build \ No newline at end of file diff --git a/build/docker_install.sh b/build/docker_install.sh new file mode 100644 index 00000000..f2c8e053 --- /dev/null +++ b/build/docker_install.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +# We need to install dependencies only for Docker +[[ ! -e /.dockerenv ]] && [[ ! -e /.dockerinit ]] && exit 0 + +set -xe + +# Install git (the php image doesn't have it) which is required by composer +# And for some reason apt-utils is not installed +apt-get update -yqq +apt-get install apt-utils +apt-get install git sqlite3 -yqq + +# Install phpunit, the tool that we will use for testing +curl -Lo /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 pdo_sqlite +pecl install redis +docker-php-ext-enable redis \ No newline at end of file