28 lines
871 B
Bash
28 lines
871 B
Bash
#!/bin/sh
|
|
|
|
# We need to install dependencies only for Docker
|
|
[[ ! -e /.dockerenv ]] && [[ ! -e /.dockerinit ]] && exit 0
|
|
|
|
# Where am I?
|
|
a="/$0"; a=${a%/*}; a=${a:-.}; a=${a#/}/; DIR=$(cd $a; pwd)
|
|
|
|
set -xe
|
|
|
|
# Install git (the php image doesn't have it) which is required by composer
|
|
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 \
|
|
git \
|
|
postgresql-dev
|
|
|
|
# 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
|
|
|
|
# Set up build config
|
|
rm "$DIR/../tests/settings.json.dist"
|
|
mv "$DIR/../tests/settings-ci.json" "$DIR/../tests/settings.json"
|
|
|
|
# Install pdo drivers
|
|
docker-php-ext-install pdo_mysql pdo_pgsql
|