From 5913b65ca84770437359f92500c3e288647e9aea Mon Sep 17 00:00:00 2001 From: Eugene Burmakin Date: Wed, 29 Jan 2025 11:46:41 +0100 Subject: [PATCH] Update CircleCI config --- .circleci/config.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d0055f31..df09558f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,11 +10,15 @@ jobs: - image: cimg/ruby:3.3.4 environment: RAILS_ENV: test - - image: cimg/postgres:13.3 + - image: cimg/postgres:14.0 environment: POSTGRES_USER: postgres POSTGRES_DB: test_database POSTGRES_PASSWORD: mysecretpassword + POSTGRES_INITDB_ARGS: --enable-debug --data-checksums --encoding=UTF8 --lc-collate=C --lc-ctype=C + command: | + apt-get update + apt-get install -y postgis postgresql-14-postgis-3 - image: redis:7.0 steps: