diff options
author | Victor Stinner <vstinner@python.org> | 2023-11-15 20:47:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-15 20:47:14 (GMT) |
commit | d9fd33a869d2be769ff596530f63ee099465b037 (patch) | |
tree | 3fc6592badc8493fd767e1d56b7bb5d3fe5d2540 /Misc | |
parent | 7e2308aaa29419eadeef3a349c7c4d78e2cbc989 (diff) | |
download | cpython-d9fd33a869d2be769ff596530f63ee099465b037.zip cpython-d9fd33a869d2be769ff596530f63ee099465b037.tar.gz cpython-d9fd33a869d2be769ff596530f63ee099465b037.tar.bz2 |
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.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Build/2023-11-15-13-40-29.gh-issue-112088.UJQxxh.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2023-11-15-13-40-29.gh-issue-112088.UJQxxh.rst b/Misc/NEWS.d/next/Build/2023-11-15-13-40-29.gh-issue-112088.UJQxxh.rst new file mode 100644 index 0000000..b176d06 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2023-11-15-13-40-29.gh-issue-112088.UJQxxh.rst @@ -0,0 +1,5 @@ +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 (`tiran/cpython_autoconf +<https://github.com/tiran/cpython_autoconf>`_) is no longer used. Patch by +Victor Stinner. |