From 2874ba7544e571e650f5b8de8f3583b25b30e192 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Menrath?= Date: Mon, 23 Sep 2024 18:38:33 +0200 Subject: [PATCH] test --- .forgejo/workflows/e2e_gancio.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/e2e_gancio.yml b/.forgejo/workflows/e2e_gancio.yml index 922bd28..23e0dc4 100644 --- a/.forgejo/workflows/e2e_gancio.yml +++ b/.forgejo/workflows/e2e_gancio.yml @@ -18,6 +18,10 @@ jobs: image: mariadb env: MYSQL_ROOT_PASSWORD: root + postgres: + images: postgres + env: + POSTGRES_HOST_AUTH_METHOD=trust gancio: image: cisti/gancio env: @@ -39,6 +43,6 @@ jobs: - run: sleep 1 - run: curl 127.0.0.1:13120 - - run: curl http://127.0.0.1:13120/api/setup/db --compressed -X POST --data-raw '{"db":{"dialect":"sqlite","storage":"./gancio.sqlite","host":"localhost","database":"gancio"}}' + - run: curl http://127.0.0.1:13120/api/setup/db --compressed -X POST --data-raw '{"db":{"dialect":"postgres","host":"127.0.0.1:5432","database":"gancio","username":"gancio","password:gancio"}}'