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

(cherry picked from commit f36d37bbaf)

Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2024-10-21 13:18:44 +02:00 committed by GitHub
parent a6d81b4dea
commit 014d0ee341
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -578,6 +578,7 @@ jobs:
needs: needs:
- check_source # Transitive dependency, needed to access `run_tests` value - check_source # Transitive dependency, needed to access `run_tests` value
- check-docs - check-docs
- check_autoconf_regen
- check_generated_files - check_generated_files
- build_macos - build_macos
- build_ubuntu - build_ubuntu
@ -613,6 +614,7 @@ jobs:
${{ ${{
needs.check_source.outputs.run_tests != 'true' needs.check_source.outputs.run_tests != 'true'
&& ' && '
check_autoconf_regen,
check_generated_files, check_generated_files,
build_macos, build_macos,
build_ubuntu, build_ubuntu,

View File

@ -1,11 +1,9 @@
#!/bin/sh #!/bin/sh
apt-get update apt-get update
# autoconf-archive is needed by autoreconf (check_generated_files job)
apt-get -yq install \ apt-get -yq install \
build-essential \ build-essential \
pkg-config \ pkg-config \
autoconf-archive \
ccache \ ccache \
gdb \ gdb \
lcov \ lcov \

View File

@ -2,7 +2,7 @@
set -e -x 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 # sync with this script. Use the same container image than the job so the job
# doesn't need to run autoreconf in a container. # doesn't need to run autoreconf in a container.
IMAGE="ubuntu:22.04" IMAGE="ubuntu:22.04"