branch: elpa/pg
commit 2a219ce535f795006aa734b1c5a7ce0962a657e6
Author: Eric Marsden <[email protected]>
Commit: Eric Marsden <[email protected]>
Updated test recipe for PgEdge variant.
---
test/Makefile | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/test/Makefile b/test/Makefile
index d099a153104..7a3a33f8f7a 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -617,15 +617,18 @@ test-cedardb: test-pg.el
# https://hub.docker.com/r/pgedge/pgedge
# https://github.com/pgEdge/pgedge-docker
-#
-# As of 2025-08, failing on "create extension vector" with a SIGILL
-# --> https://github.com/pgEdge/pgedge-docker/issues/20
test-pgedge: test-pg.el
${DOCKER} run --rm --name pgedge \
--pull=newer \
--publish 127.0.0.1:5481:5432 \
-v "./pgedge-config.json:/home/pgedge/db.json" \
- -d docker.io/pgedge/pgedge:pg17-latest
+ -e PGPORT=5432 \
+ -e POSTGRES_USER=pgeltestuser \
+ -e POSTGRES_PASSWORD=pgeltest \
+ -e POSTGRES_DB=pgeltestdb \
+ -e LANG=en_US.UTF8 \
+ -e LC_CTYPE=en_US.UTF8 \
+ -d ghcr.io/pgedge/pgedge-postgres:17-spock5-minimal -c
listen_addresses="*"
sleep 10
PGURI=postgresql://pgeltestuser:[email protected]:5481/pgeltestdb
$(MAKE) test
${DOCKER} stop pgedge