]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-125741: Update `build.yml` for the new check_autoconf_regen job (#125772)
authorAdam Turner <9087854+AA-Turner@users.noreply.github.com>
Mon, 21 Oct 2024 10:54:54 +0000 (11:54 +0100)
committerGitHub <noreply@github.com>
Mon, 21 Oct 2024 10:54:54 +0000 (11:54 +0100)
.github/workflows/build.yml
.github/workflows/posix-deps-apt.sh
Tools/build/regen-configure.sh

index a72d4a1bb97cb9e863283867a5db0d0f01a98ff9..88898895d15ad09cfa80b7a6d6d41dea79f32d4b 100644 (file)
@@ -536,6 +536,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
@@ -571,6 +572,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 1a24b07c3ff7073f45dec8026fe8b430b6fb026b..ee7c03e86999c1fc9b353034564ae50e6887de0f 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.11.11293396815"