File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -541,6 +541,7 @@ jobs:
541
541
needs :
542
542
- check_source # Transitive dependency, needed to access `run_tests` value
543
543
- check-docs
544
+ - check_autoconf_regen
544
545
- check_generated_files
545
546
- build_macos
546
547
- build_ubuntu
@@ -573,6 +574,7 @@ jobs:
573
574
${{
574
575
needs.check_source.outputs.run_tests != 'true'
575
576
&& '
577
+ check_autoconf_regen,
576
578
check_generated_files,
577
579
build_macos,
578
580
build_ubuntu,
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
apt-get update
3
3
4
- # autoconf-archive is needed by autoreconf (check_generated_files job)
5
4
apt-get -yq install \
6
5
build-essential \
7
6
pkg-config \
8
- autoconf-archive \
9
7
ccache \
10
8
gdb \
11
9
lcov \
Original file line number Diff line number Diff line change 2
2
3
3
set -e -x
4
4
5
- # The check_generated_files job of .github/workflows/build.yml must kept in
5
+ # The check_autoconf_regen job of .github/workflows/build.yml must kept in
6
6
# sync with this script. Use the same container image than the job so the job
7
7
# doesn't need to run autoreconf in a container.
8
8
IMAGE=" ghcr.io/python/autoconf:2024.10.16.11360930377"
You can’t perform that action at this time.
0 commit comments