85
85
- uses : actions/setup-python@v2
86
86
- name : Install Dependencies
87
87
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
88
100
- name : Build CPython
89
101
run : |
90
102
# Build Python with the libpython dynamic library
@@ -95,20 +107,17 @@ jobs:
95
107
run : |
96
108
changes=$(git status --porcelain)
97
109
# 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."
101
114
echo "$changes"
102
115
exit 1
103
116
fi
104
117
- name : Check exported libpython symbols
105
118
run : make smelly
106
119
- name : Check limited ABI symbols
107
120
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
112
121
113
122
build_win32 :
114
123
name : ' Windows (x86)'
0 commit comments