2016-01-15 21:33:30 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
export PGHOST=${PGHOST:-192.168.99.100}
|
|
|
|
export PGUSER="postgres"
|
|
|
|
export PGPASSWORD=""
|
|
|
|
export PGDATABASE="booktown"
|
2016-01-15 21:44:21 +03:00
|
|
|
export PGPORT="15432"
|
2016-01-15 21:33:30 +03:00
|
|
|
|
2016-06-15 19:40:01 +03:00
|
|
|
for i in {1..6}
|
2016-01-15 21:33:30 +03:00
|
|
|
do
|
|
|
|
export PGVERSION="9.$i"
|
|
|
|
echo "Running tests against PostgreSQL v$PGVERSION"
|
|
|
|
docker rm -f postgres || true
|
2016-01-15 21:44:21 +03:00
|
|
|
docker run -p $PGPORT:5432 --name postgres -e POSTGRES_PASSWORD=$PGPASSWORD -d postgres:$PGVERSION
|
2016-01-15 21:33:30 +03:00
|
|
|
sleep 5
|
|
|
|
make test
|
|
|
|
echo "----------"
|
|
|
|
done
|