Codebase list matrix-synapse / debian/0.34.0-3_bpo9+1 test_postgresql.sh
debian/0.34.0-3_bpo9+1

Tree @debian/0.34.0-3_bpo9+1 (Download .tar.gz)

test_postgresql.sh @debian/0.34.0-3_bpo9+1raw · history · blame

#!/bin/bash

# This script builds the Docker image to run the PostgreSQL tests, and then runs
# the tests.

set -e

# Build, and tag
docker build docker/ -f docker/Dockerfile-pgtests -t synapsepgtests

# Run, mounting the current directory into /src
docker run --rm -it -v $(pwd)\:/src synapsepgtests