observatory-extension/scripts/ci/run_tests_docker.sh

13 lines
160 B
Bash
Raw Normal View History

#!/bin/bash
/etc/init.d/postgresql start
cd /srv
make clean-all
make install
cd /srv/src/pg
make test || { cat /srv/src/pg/test/regression.diffs; false; }