summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2022-03-10 17:03:27 (GMT)
committerGitHub <noreply@github.com>2022-03-10 17:03:27 (GMT)
commit434ffb7f1f86e6b0cdfad3ede59993934d86e464 (patch)
tree9e4251c3ac27d5d137b90e6000628cb03e14e31c /.github
parenta0eb69c1a2e3aee75cb48e9868ef06a531b94a70 (diff)
downloadcpython-434ffb7f1f86e6b0cdfad3ede59993934d86e464.zip
cpython-434ffb7f1f86e6b0cdfad3ede59993934d86e464.tar.gz
cpython-434ffb7f1f86e6b0cdfad3ede59993934d86e464.tar.bz2
bpo-46973: Add regen-configure make target (GH-31792)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml8
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index f6df743..8b1709d 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -74,12 +74,14 @@ jobs:
grep "aclocal 1.16.3" aclocal.m4
grep -q "runstatedir" configure
grep -q "PKG_PROG_PKG_CONFIG" aclocal.m4
- - name: Regenerate autoconf files
- run: docker run --rm -v $(pwd):/src quay.io/tiran/cpython_autoconf:269
- - name: Build CPython
+ - name: Configure CPython
run: |
# Build Python with the libpython dynamic library
./configure --with-pydebug --enable-shared
+ - name: Regenerate autoconf files with container image
+ run: make regen-configure
+ - name: Build CPython
+ run: |
make -j4 regen-all
make regen-stdlib-module-names
- name: Check for changes