Skip to content

Commit 1528d24

Browse files
[3.10] bpo-44035: Check autoconf files thoroughly (GH-29935) (GH-29937)
Co-authored-by: Christian Heimes <[email protected]>
1 parent 2080198 commit 1528d24

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

.github/workflows/build.yml

+16-7
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,18 @@ jobs:
8585
- uses: actions/setup-python@v2
8686
- name: Install Dependencies
8787
run: sudo ./.github/workflows/posix-deps-apt.sh
88+
- name: Add ccache to PATH
89+
run: echo "PATH=/usr/lib/ccache:$PATH" >> $GITHUB_ENV
90+
- name: Configure ccache action
91+
uses: hendrikmuhs/ccache-action@v1
92+
- name: Check Autoconf version 2.69 and aclocal 1.16.3
93+
run: |
94+
grep "Generated by GNU Autoconf 2.69" configure
95+
grep "aclocal 1.16.3" aclocal.m4
96+
grep -q "runstatedir" configure
97+
grep -q "PKG_PROG_PKG_CONFIG" aclocal.m4
98+
- name: Regenerate autoconf files
99+
run: docker run --rm -v $(pwd):/src quay.io/tiran/cpython_autoconf:269
88100
- name: Build CPython
89101
run: |
90102
# Build Python with the libpython dynamic library
@@ -95,20 +107,17 @@ jobs:
95107
run: |
96108
changes=$(git status --porcelain)
97109
# Check for changes in regenerated files
98-
if ! test -z "$changes"
99-
then
100-
echo "Generated files not up to date. Perhaps you forgot to run make regen-all or build.bat --regen ;)"
110+
if test -n "$changes"; then
111+
echo "Generated files not up to date."
112+
echo "Perhaps you forgot to run make regen-all or build.bat --regen. ;)"
113+
echo "configure files must be regenerated with a specific, unpatched version of autoconf."
101114
echo "$changes"
102115
exit 1
103116
fi
104117
- name: Check exported libpython symbols
105118
run: make smelly
106119
- name: Check limited ABI symbols
107120
run: make check-limited-abi
108-
- name: Check Autoconf version 2.69
109-
run: |
110-
grep "Generated by GNU Autoconf 2.69" configure
111-
grep "PKG_PROG_PKG_CONFIG" aclocal.m4
112121

113122
build_win32:
114123
name: 'Windows (x86)'

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,8 @@ Tools/unicode/data/
112112
/config.log
113113
/config.status
114114
/config.status.lineno
115+
# hendrikmuhs/ccache-action@v1
116+
/.ccache
115117
/platform
116118
/profile-clean-stamp
117119
/profile-run-stamp
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CI now verifies that autoconf files have been regenerated with a current and
2+
unpatched autoconf package.

0 commit comments

Comments
 (0)