mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-14 10:23:02 +03:00
20 lines
437 B
Bash
Executable File
20 lines
437 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export PGHOST=${PGHOST:-192.168.99.100}
|
|
export PGUSER="postgres"
|
|
export PGPASSWORD=""
|
|
export PGDATABASE="booktown"
|
|
export PGPORT="15432"
|
|
|
|
for i in {1..6}
|
|
do
|
|
export PGVERSION="9.$i"
|
|
echo "Running tests against PostgreSQL v$PGVERSION"
|
|
docker rm -f postgres || true
|
|
docker run -p $PGPORT:5432 --name postgres -e POSTGRES_PASSWORD=$PGPASSWORD -d postgres:$PGVERSION
|
|
sleep 5
|
|
make test
|
|
echo "----------"
|
|
done |