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 @@ -578,6 +578,7 @@ jobs:
578
578
needs :
579
579
- check_source # Transitive dependency, needed to access `run_tests` value
580
580
- check-docs
581
+ - check_autoconf_regen
581
582
- check_generated_files
582
583
- build_macos
583
584
- build_ubuntu
@@ -613,6 +614,7 @@ jobs:
613
614
${{
614
615
needs.check_source.outputs.run_tests != 'true'
615
616
&& '
617
+ check_autoconf_regen,
616
618
check_generated_files,
617
619
build_macos,
618
620
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=" ubuntu:22.04"
You can’t perform that action at this time.
0 commit comments