Skip to content

Commit

Permalink
pythongh-112088: Run autoreconf in GHA check_generated_files
Browse files Browse the repository at this point in the history
The "Check if generated files are up to date" job of GitHub Actions
now runs the "autoreconf -ivf -Werror" command instead of the "make
regen-configure" command to avoid depending on the unstable quay.io
server.
  • Loading branch information
vstinner committed Nov 14, 2023
1 parent 9302f05 commit 66a3210
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,13 @@ jobs:
# Build Python with the libpython dynamic library
./configure --config-cache --with-pydebug --enable-shared
- name: Regenerate autoconf files with container image
run: make regen-configure
# gh-112088: Don't run "make regen-configure" to avoid dependency
# on unstable quay.io service
# run: make regen-configure
run: |
autoreconf -ivf -Werror
# to debug
git diff || true
- name: Build CPython
run: |
make -j4 regen-all
Expand Down
2 changes: 1 addition & 1 deletion aclocal.m4

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 66a3210

Please sign in to comment.