You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- We weren't using the intended tag (and so always testing against
bullseye).
- We weren't using `'pull': 'always'` and so we'd use whatever image
happened to be cached on the runner without ever checking for newer
versions.
- Update to pg 15 for the sid test, downgrade to pg 12 for the focal
test.
local pg_wait = 'for i in $(seq 0 30); do if pg_isready -d ci -h pg -U ci -t 1; then break; elif [ "$i" = 30 ]; then echo "Timeout waiting for postgresql" >&2; exit 1; fi; sleep 1; done';
78
82
79
83
local debian_pg_pipeline(name, image, pg_tag='bullseye', distro=auto_distro) = debian_pipeline(
80
84
name,
81
85
image,
82
86
deps=default_deps + pg_deps,
83
-
services=[pg_service],
87
+
services=[pg_service(pg_tag)],
84
88
before_pytest=[pg_wait],
85
89
pytest_opts='--pgsql "postgresql://ci:ci@pg/ci"',
86
90
distro=distro
@@ -143,7 +147,7 @@ local upgrade_test(name, from='v0.1.10', intermediates=[], pg=false, pg_convert=
0 commit comments