From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 17 Feb 2025 16:01:27 +0000 (+0100) Subject: [3.12] gh-125741: Update `build.yml` for the new check_autoconf_regen job (GH-125772... X-Git-Tag: v3.12.10~204 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5af357d27c8c788523bde7bb3c07250ba84a7d55;p=thirdparty%2FPython%2Fcpython.git [3.12] gh-125741: Update `build.yml` for the new check_autoconf_regen job (GH-125772) (#130229) Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e0a4fc6bb648..7e8c5727a06c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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, diff --git a/.github/workflows/posix-deps-apt.sh b/.github/workflows/posix-deps-apt.sh index a4679e118f9c..1cd8f8e86073 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 c3df291745a0..e1ecefddeb87 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="ghcr.io/python/autoconf:2024.10.16.11360930377"