commit dc8e47b663891246cad3e60ac46fb20ef402e4f3 parent 305c040c11da3f42c26f7e4cadd3c21c31ecb1a5 Author: Martin Schanzenbach <schanzen@gnunet.org> Date: Sun, 22 Mar 2026 13:16:01 +0100 fix CI Diffstat:
| M | contrib/ci/Containerfile | | | 1 | + |
| M | contrib/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-mailbox-test + make check