taldir

Directory service to resolve wallet mailboxes by messenger addresses
Log | Files | Refs | Submodules | README | LICENSE

commit fc0a20d919b11f45b5cdec7d31f6c6709a62b922
parent d613387a85e8b327483e4a94835bddc12a69ca52
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date:   Sun, 22 Mar 2026 13:13:47 +0100

fix CI

Diffstat:
Mcontrib/ci/Containerfile | 1+
Mcontrib/ci/jobs/2-amd64-test/test.sh | 5+++++
2 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/contrib/ci/Containerfile b/contrib/ci/Containerfile @@ -6,6 +6,7 @@ RUN apt-get update -yqq RUN apt-get upgrade -yqq RUN apt-get install -yqq \ git \ + postgresql \ golang # Debian packaging tools diff --git a/contrib/ci/jobs/2-amd64-test/test.sh b/contrib/ci/jobs/2-amd64-test/test.sh @@ -9,4 +9,9 @@ apt-get upgrade -yqq --prefix=/usr make && make install +sudo -u postgres /usr/lib/postgresql/17/bin/postgres -D /etc/postgresql/17/main -h localhost -p 5432 & +sleep 10 +sudo -u postgres createuser -p 5432 root +sudo -u postgres createdb -p 5432 -O root taler-directory + make check