From 23e5d1cd63e74c70d677024c651f4851551fc68f Mon Sep 17 00:00:00 2001 From: Sebastian Wagner Date: Sat, 30 Nov 2024 21:47:46 +0100 Subject: [PATCH] tests: install psql command required by tests maybe it was already installed on github actions by default? we can't rely on it, better do it explicitly then it also works on other plattforms, such as act --- .github/workflows/scripts/setup-full.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/scripts/setup-full.sh b/.github/workflows/scripts/setup-full.sh index 1d386763f..7c18b9a25 100644 --- a/.github/workflows/scripts/setup-full.sh +++ b/.github/workflows/scripts/setup-full.sh @@ -19,6 +19,8 @@ if [ $python_version == '3.8' ]; then # for pymssql there are no wheels for 3.8 https://github.com/certtools/intelmq/issues/2539 DEBIAN_FRONTEND="noninteractive" sudo -E apt install -y build-essential freetds-dev libssl-dev libkrb5-dev fi +# for psql (used below) +DEBIAN_FRONTEND="noninteractive" sudo -E apt install -y postgresql-client-14 # Install the dependencies of all the bots pip install wheel