mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
bpo-47146: Stop Depending On regen-deepfreeze For regen-global-objects (gh-32218)
This effectively reverts the Makefile change in gh-31637. I've added some notes so it is more clear what is going on. We also update the "Check if generated files are up to date" job to run "make regen-deepfreeze" to ensure "make regen-global-objects" catches deepfreeze.c. https://bugs.python.org/issue47146
This commit is contained in:
parent
74b95d86e0
commit
e7bb7c2f04
3 changed files with 9 additions and 19 deletions
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
|
|
@ -82,6 +82,9 @@ jobs:
|
|||
run: make regen-configure
|
||||
- name: Build CPython
|
||||
run: |
|
||||
# Deepfreeze will usually cause global objects to be added or removed,
|
||||
# so we run it before regen-global-objects gets rum (in regen-all).
|
||||
make regen-deepfreeze
|
||||
make -j4 regen-all
|
||||
make regen-stdlib-module-names
|
||||
- name: Check for changes
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue