"git@mau.dev:maunium/synapse.git" did not exist on "78ba0e7ab8f1d57eee6aa56e9d496d838a24c6f3"
Newer
Older
#!/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