From 83912c95a8ee39d0eb93c6aba1a3b6f0aaf4ce11 Mon Sep 17 00:00:00 2001 From: gromdimon Date: Mon, 4 Mar 2024 13:51:23 +0100 Subject: [PATCH] feat: update postgres installation script --- .gitlab-ci.yml | 2 +- utility/install_postgres.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 978559aa..64112fbf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ image: python:3.8 services: - - postgres:11 + - postgres:16 variables: POSTGRES_DB: sodar_core diff --git a/utility/install_postgres.sh b/utility/install_postgres.sh index db10302c..209c792a 100755 --- a/utility/install_postgres.sh +++ b/utility/install_postgres.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash echo "***********************************************" -echo "Installing PostgreSQL v11" +echo "Installing PostgreSQL v16" echo "***********************************************" add-apt-repository -y "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - apt-get -y update -apt-get -y install postgresql-11 +apt-get -y install postgresql-16