]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] 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, 17 Feb 2025 16:01:27 +0000 (17:01 +0100)
committerGitHub <noreply@github.com>
Mon, 17 Feb 2025 16:01:27 +0000 (18:01 +0200)
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 e0a4fc6bb648f280621ae706a5aa624b22115700..7e8c5727a06cc3010938a9818950ea6fbd1e3aa9 100644 (file)
@@ -541,6 +541,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
@@ -573,6 +574,7 @@ jobs:
           ${{
             needs.check_source.outputs.run_tests != 'true'
             && '
+            check_autoconf_regen,
             check_generated_files,
             build_macos,
             build_ubuntu,
index a4679e118f9c1c3740c88fb37d75a34c681a5717..1cd8f8e860732217c714f53fe396ef4cf9bba0dd 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 c3df291745a09e202f8c87b32f00142e1e31cf2f..e1ecefddeb8732094d047b3293ea053f5297a771 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="ghcr.io/python/autoconf:2024.10.16.11360930377"