From c23f976d366ed6f8925f7bb12fef8f3de1081671 Mon Sep 17 00:00:00 2001
From: mancini <mancini@astron.nl>
Date: Mon, 13 Feb 2023 12:04:07 +0100
Subject: [PATCH] Fix missing variable in CI/CD

---
 .gitlab-ci.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 55345e6..a3bb7df 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -25,6 +25,7 @@ validate-resource-description:   # This job also runs in the test stage.
     POSTGRES_DB: gavo
     POSTGRES_USER: postgres
     POSTGRES_PASSWORD: gavo
+    POSTGRES_HOST: pg-dachs
     POSTGRES_HOST_AUTH_METHOD: trust
 
   before_script:
@@ -43,6 +44,7 @@ inspect-resource-description:   # This job also runs in the test stage.
     POSTGRES_USER: postgres
     POSTGRES_PASSWORD: gavo
     POSTGRES_HOST_AUTH_METHOD: trust
+    POSTGRES_HOST: pg-dachs
 
   before_script:
     - psql -h pg-dachs -U postgres -d $POSTGRES_DB -a -f test/sql/test_data.sql
-- 
GitLab