Codebase list matrix-synapse / debian/1.27.0-1_bpo10+2 test_postgresql.sh
debian/1.27.0-1_bpo10+2

Tree @debian/1.27.0-1_bpo10+2 (Download .tar.gz)

test_postgresql.sh @debian/1.27.0-1_bpo10+2raw · 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