From 09e467e4f6e816298f2b528931bf437e3d843f5c Mon Sep 17 00:00:00 2001 From: chihlasm Date: Fri, 27 Mar 2026 12:36:25 +0000 Subject: [PATCH] fix: use pgvector/pgvector:pg16 image in CI for vector extension support Both backend and e2e jobs used plain postgres:16 which doesn't include pgvector. Migration 042 added CREATE EXTENSION vector, causing e2e to fail. The pgvector image is a drop-in replacement. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bf17e58a..5415e8df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: services: postgres: - image: postgres:16 + image: pgvector/pgvector:pg16 env: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres @@ -100,7 +100,7 @@ jobs: services: postgres: - image: postgres:16 + image: pgvector/pgvector:pg16 env: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres