https://github.com/python/cpython/commit/014d0ee341b74bafb5c5d3dbc5e81418c870f8ef
commit: 014d0ee341b74bafb5c5d3dbc5e81418c870f8ef
branch: 3.13
author: Miss Islington (bot) <[email protected]>
committer: AA-Turner <[email protected]>
date: 2024-10-21T11:18:44Z
summary:

[3.13] gh-125741: Update `build.yml` for the new check_autoconf_regen job 
(GH-125772) (#125779)

(cherry picked from commit f36d37bbafcee711c765a8cda9ac3ca00b8258c8)

Co-authored-by: Adam Turner <[email protected]>

files:
M .github/workflows/build.yml
M .github/workflows/posix-deps-apt.sh
M Tools/build/regen-configure.sh

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 5ccbc5d17a05d0..56940d7b4aa474 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -578,6 +578,7 @@ jobs:
     needs:
     - check_source  # Transitive dependency, needed to access `run_tests` value
     - check-docs
+    - check_autoconf_regen
     - check_generated_files
     - build_macos
     - build_ubuntu
@@ -613,6 +614,7 @@ jobs:
           ${{
             needs.check_source.outputs.run_tests != 'true'
             && '
+            check_autoconf_regen,
             check_generated_files,
             build_macos,
             build_ubuntu,
diff --git a/.github/workflows/posix-deps-apt.sh 
b/.github/workflows/posix-deps-apt.sh
index fb485bd4f82bd2..bfc5a0874281bd 100755
--- a/.github/workflows/posix-deps-apt.sh
+++ b/.github/workflows/posix-deps-apt.sh
@@ -1,11 +1,9 @@
 #!/bin/sh
 apt-get update
 
-# autoconf-archive is needed by autoreconf (check_generated_files job)
 apt-get -yq install \
     build-essential \
     pkg-config \
-    autoconf-archive \
     ccache \
     gdb \
     lcov \
diff --git a/Tools/build/regen-configure.sh b/Tools/build/regen-configure.sh
index e34a36c1a573e5..0a23318a2f37a9 100755
--- a/Tools/build/regen-configure.sh
+++ b/Tools/build/regen-configure.sh
@@ -2,7 +2,7 @@
 
 set -e -x
 
-# The check_generated_files job of .github/workflows/build.yml must kept in
+# 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"

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to