diff options
author | Seth Michael Larson <sethmichaellarson@gmail.com> | 2023-11-20 23:38:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-20 23:38:10 (GMT) |
commit | b6535ea7ecf40c51a9a13089d961c29abeaffa5e (patch) | |
tree | 14c6d953478e4c5f6eeb5b4bd1050d9147b43322 /.github | |
parent | 6c2f34fa77f884bd79801a9ab8a117cab7d9c7ed (diff) | |
download | cpython-b6535ea7ecf40c51a9a13089d961c29abeaffa5e.zip cpython-b6535ea7ecf40c51a9a13089d961c29abeaffa5e.tar.gz cpython-b6535ea7ecf40c51a9a13089d961c29abeaffa5e.tar.bz2 |
[3.10] gh-112160: Add 'regen-configure' make target (#112163)
Add 'regen-configure' make target
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d7066d3..0d75453 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -110,8 +110,12 @@ jobs: grep "aclocal 1.16.3" aclocal.m4 grep -q "runstatedir" configure grep -q "PKG_PROG_PKG_CONFIG" aclocal.m4 + - name: Configure CPython + run: | + # Build Python with the libpython dynamic library + ./configure --config-cache --with-pydebug --enable-shared - name: Regenerate autoconf files - run: docker run --rm -v $(pwd):/src quay.io/tiran/cpython_autoconf:269 + run: make regen-configure - name: Build CPython run: | # Build Python with the libpython dynamic library |