Skip to content

Commit 76c9c9c

Browse files
authored
[3.11] GH-112160: Pin to manifest of quay.io/tiran/cpython_autoconf (#112161)
1 parent 798d437 commit 76c9c9c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile.pre.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2405,7 +2405,9 @@ regen-configure:
24052405
@if command -v podman >/dev/null; then RUNTIME="podman"; else RUNTIME="docker"; fi; \
24062406
if ! command -v $$RUNTIME; then echo "$@ needs either Podman or Docker container runtime." >&2; exit 1; fi; \
24072407
if command -v selinuxenabled >/dev/null && selinuxenabled; then OPT=":Z"; fi; \
2408-
CMD="$$RUNTIME run --rm --pull=always -v $(abs_srcdir):/src$$OPT quay.io/tiran/cpython_autoconf:269"; \
2408+
# Manifest corresponds with tag '269' \
2409+
CPYTHON_AUTOCONF_MANIFEST="sha256:f370fee95eefa3d57b00488bce4911635411fa83e2d293ced8cf8a3674ead939" \
2410+
CMD="$$RUNTIME run --rm --pull=missing -v $(abs_srcdir):/src$$OPT quay.io/tiran/cpython_autoconf@$$CPYTHON_AUTOCONF_MANIFEST"; \
24092411
echo $$CMD; \
24102412
$$CMD || exit $?
24112413

0 commit comments

Comments
 (0)