mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
gh-112088: Run autoreconf in GHA check_generated_files (#112090)
The "Check if generated files are up to date" job of GitHub Actions now runs the "autoreconf -ivf -Werror" command instead of the "make regen-configure" command to avoid depending on the external quay.io server. Add Tools/build/regen-configure.sh script to regenerate the configure with an Ubuntu container image. The "quay.io/tiran/cpython_autoconf:271" container image (https://github.com/tiran/cpython_autoconf) is no longer used.
This commit is contained in:
parent
7e2308aaa2
commit
d9fd33a869
9 changed files with 131 additions and 160 deletions
15
configure.ac
15
configure.ac
|
@ -1,15 +1,12 @@
|
|||
dnl ***************************************************
|
||||
dnl * Please run autoreconf -if to test your changes! *
|
||||
dnl ***************************************************
|
||||
dnl ************************************************************
|
||||
dnl * Please run autoreconf -ivf -Werror to test your changes! *
|
||||
dnl ************************************************************
|
||||
dnl
|
||||
dnl Python's configure script requires autoconf 2.71, autoconf-archive,
|
||||
dnl pkgconf's m4 macros.
|
||||
dnl aclocal 1.16, and pkg-config.
|
||||
dnl
|
||||
dnl It is recommended to use a cpython_autoconf container to regenerate the
|
||||
dnl configure script:
|
||||
dnl
|
||||
dnl podman run --rm --pull=always -v $(pwd):/src:Z quay.io/tiran/cpython_autoconf:271
|
||||
dnl docker run --rm --pull=always -v $(pwd):/src quay.io/tiran/cpython_autoconf:271
|
||||
dnl It is recommended to use the Tools/build/regen-configure.sh shell script
|
||||
dnl to regenerate the configure script.
|
||||
dnl
|
||||
|
||||
# Set VERSION so we only need to edit in one place (i.e., here)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue