From 3d932e1e73810f7405a9564c2671f27aa6fd99a0 Mon Sep 17 00:00:00 2001 From: Polina Bungina <27892524+hughcapet@users.noreply.github.com> Date: Mon, 3 Feb 2025 10:44:02 +0300 Subject: [PATCH] Temp revert of "Enable behave tests with Citus 13 and PostgreSQL 17" (#3265) but keep timeout increase --- .github/workflows/install_deps.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/install_deps.py b/.github/workflows/install_deps.py index 5fd3ae5b..033a1b6a 100644 --- a/.github/workflows/install_deps.py +++ b/.github/workflows/install_deps.py @@ -47,8 +47,8 @@ def install_packages(what): packages['exhibitor'] = packages['zookeeper'] packages = packages.get(what, []) ver = versions.get(what) - if 15 <= float(ver) < 18: - packages += ['postgresql-{0}-citus-13.0'.format(ver)] + if 15 <= float(ver) < 17: + packages += ['postgresql-{0}-citus-12.1'.format(ver)] subprocess.call(['sudo', 'apt-get', 'update', '-y']) return subprocess.call(['sudo', 'apt-get', 'install', '-y', 'postgresql-' + ver, 'expect-dev'] + packages)