gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-deployment] branch master updated: fix postgres setup logic in lc


From: gnunet
Subject: [taler-deployment] branch master updated: fix postgres setup logic in lcov builder
Date: Sun, 23 Feb 2020 22:31:28 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new 255de85  fix postgres setup logic in lcov builder
255de85 is described below

commit 255de852593064cd26814835cc622cc020f20eb2
Author: Christian Grothoff <address@hidden>
AuthorDate: Sun Feb 23 22:31:25 2020 +0100

    fix postgres setup logic in lcov builder
---
 buildbot/coverage.sh | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/buildbot/coverage.sh b/buildbot/coverage.sh
index e8d0db4..4035919 100755
--- a/buildbot/coverage.sh
+++ b/buildbot/coverage.sh
@@ -8,12 +8,16 @@ PG_VER=12
 PG_DIR=/usr/lib/postgresql/$PG_VER/bin
 
 # setup little postgres DB for us ...
-TMP_DB_DIR=`mktemp tmpXXXXXX`
+TMP_DB_DIR=`mktemp -d tmpXXXXXX`
 $PG_DIR/initdb -D $TMP_DB_DIR/ -A trust
+export PGPORT=5432
+export PGHOST=localhost
+export PGOPTIONS="-c unix_socket_directories='$HOME'"
 $PG_DIR/createdb talercheck
 $PG_DIR/createdb synccheck
 $PG_DIR/createdb anastasischeck
-$PG_DIR/pg_ctl -D $TMP_DB_DIR/ -l logfile start
+$PG_DIR/pg_ctl -D $TMP_DB_DIR/ -o "-c unix_socket_directories=$HOME" -l 
logfile start
+
 
 for codebase in merchant exchange sync ; do
   TOP="$HOME/sources/${codebase}/"

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]