2018-01-31 13:38:48 -05:00
|
|
|
#!/bin/sh
|
2016-07-15 15:50:28 -04:00
|
|
|
|
|
|
|
# We need to install dependencies only for Docker
|
|
|
|
[[ ! -e /.dockerenv ]] && [[ ! -e /.dockerinit ]] && exit 0
|
|
|
|
|
2016-07-19 11:04:39 -04:00
|
|
|
# Where am I?
|
2018-01-31 13:56:00 -05:00
|
|
|
a="/$0"; a=${a%/*}; a=${a:-.}; a=${a#/}/; DIR=$(cd $a; pwd)
|
2016-07-19 11:04:39 -04:00
|
|
|
|
2016-07-15 15:50:28 -04:00
|
|
|
set -xe
|
|
|
|
|
|
|
|
# Install git (the php image doesn't have it) which is required by composer
|
2018-01-31 13:35:52 -05:00
|
|
|
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 \
|
|
|
|
curl \
|
2018-01-31 14:04:50 -05:00
|
|
|
git \
|
|
|
|
postgresql-dev
|
2016-07-15 15:50:28 -04:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2016-07-19 10:51:20 -04:00
|
|
|
# Set up build config
|
2016-07-19 11:17:55 -04:00
|
|
|
rm "$DIR/../tests/settings.json.dist"
|
|
|
|
mv "$DIR/../tests/settings-ci.json" "$DIR/../tests/settings.json"
|
2016-07-19 10:51:20 -04:00
|
|
|
|
2018-01-31 14:17:14 -05:00
|
|
|
# Install pdo drivers
|
|
|
|
docker-php-ext-install pdo_mysql pdo_pgsql
|