Skip to content

Commit

Permalink
pythongh-124612: Use ghcr.io/python/autoconf instead of public image (p…
Browse files Browse the repository at this point in the history
…ythonGH-124657)

* pythongh-124612: Use ghcr.io/python/autoconf instead of public image

* Update
(cherry picked from commit b502573)

Co-authored-by: Donghee Na <[email protected]>
  • Loading branch information
corona10 authored and miss-islington committed Oct 30, 2024
1 parent 6b0ef1f commit 8ea24d0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Tools/build/regen-configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@ set -e -x
# The check_autoconf_regen job of .github/workflows/build.yml must kept in
# sync with this script. Use the same container image than the job so the job
# doesn't need to run autoreconf in a container.
IMAGE="ubuntu:22.04"
DEPENDENCIES="autotools-dev autoconf autoconf-archive pkg-config"
IMAGE="ghcr.io/python/autoconf:2024.10.06.11200919239"
AUTORECONF="autoreconf -ivf -Werror"

WORK_DIR="/src"
SHELL_CMD="apt-get update && apt-get -yq install $DEPENDENCIES && cd $WORK_DIR && $AUTORECONF"

abs_srcdir=$(cd $(dirname $0)/../..; pwd)

Expand All @@ -28,4 +26,4 @@ if command -v selinuxenabled >/dev/null && selinuxenabled; then
PATH_OPT=":Z"
fi

"$RUNTIME" run --rm -v "$abs_srcdir:$WORK_DIR$PATH_OPT" "$IMAGE" /usr/bin/bash -c "$SHELL_CMD"
"$RUNTIME" run --rm -v "$abs_srcdir:$WORK_DIR$PATH_OPT" "$IMAGE"

0 comments on commit 8ea24d0

Please sign in to comment.