mirror of https://github.com/watcha-fr/synapse
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
301 B
13 lines
301 B
6 years ago
|
#!/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
|