Skip to content

Commit cc67cbd

Browse files
committed
Add comment
1 parent 9813003 commit cc67cbd

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/build.yml

+3
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,8 @@ jobs:
120120

121121
check_generated_files:
122122
name: 'Check if generated files are up to date'
123+
# Don't use ubuntu-latest but a specific version to make the job
124+
# reproducible: to get the same tools versions (autoconf, aclocal, ...)
123125
runs-on: ubuntu-22.04
124126
timeout-minutes: 60
125127
needs: check_source
@@ -151,6 +153,7 @@ jobs:
151153
# Build Python with the libpython dynamic library
152154
./configure --config-cache --with-pydebug --enable-shared
153155
- name: Regenerate autoconf files
156+
# Same command used by Tools/build/regen-configure.sh ($AUTORECONF)
154157
run: autoreconf -ivf -Werror
155158
- name: Build CPython
156159
run: |

Tools/build/regen-configure.sh

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
set -e -x
44

5+
# The check_generated_files job of .github/workflows/build.yml must kept in
6+
# sync with this script.
57
IMAGE="ubuntu:22.04"
68
DEPENDENCIES="autotools-dev autoconf autoconf-archive pkg-config"
79
AUTORECONF="autoreconf -ivf -Werror"

0 commit comments

Comments
 (0)