From 1b4bcdabfdd5e9b14631e3bd182ef81afbba7fff Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Sat, 11 Oct 2025 11:42:09 -0700 Subject: [PATCH] fix test --- .circleci/config.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ffff2ffc97..0bfbbcb440 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -681,7 +681,11 @@ jobs: name: Show git commit hash command: | echo "Git commit hash: $CIRCLE_SHA1" - + - run: + name: Install PostgreSQL + command: | + sudo apt-get update + sudo apt-get install -y postgresql-14 postgresql-contrib-14 - restore_cache: keys: - v1-dependencies-{{ checksum ".circleci/requirements.txt" }}