]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-125741: Update `build.yml` for the new check_autoconf_regen job (GH-125772...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 21 Oct 2024 11:18:44 +0000 (13:18 +0200)
committerGitHub <noreply@github.com>
Mon, 21 Oct 2024 11:18:44 +0000 (11:18 +0000)
(cherry picked from commit f36d37bbafcee711c765a8cda9ac3ca00b8258c8)

Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
.github/workflows/build.yml
.github/workflows/posix-deps-apt.sh
Tools/build/regen-configure.sh

index 5ccbc5d17a05d0e0c417cc5d63359300d394909e..56940d7b4aa4745d115fb529e228b708c21684ff 100644 (file)
@@ -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,
index fb485bd4f82bd2f561305c54f6687dd8350d0d4b..bfc5a0874281bd8b555ed7ba135bd709ba677b8a 100755 (executable)
@@ -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 \
index e34a36c1a573e591679c15244f3b15ece4376d39..0a23318a2f37a9b7d0d01c39684b0268475af472 100755 (executable)
@@ -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"