aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-11-24 13:38:08 +0100
committerGitHub <noreply@github.com>2020-11-24 13:38:08 +0100
commitac7d0169d2bce2021b8d88973e649889d7dc1b03 (patch)
tree9a9b06a930f0a485525ac76f2dd5b8e305592b7a /.github
parentbpo-42260: Improve error handling in _PyConfig_FromDict (GH-23488) (diff)
downloadcpython-ac7d0169d2bce2021b8d88973e649889d7dc1b03.tar.gz
cpython-ac7d0169d2bce2021b8d88973e649889d7dc1b03.tar.bz2
cpython-ac7d0169d2bce2021b8d88973e649889d7dc1b03.zip
bpo-42212: smelly.py also checks the dynamic library (GH-23423)
The smelly.py script now also checks the Python dynamic library and extension modules, not only the Python static library. Make also the script more verbose: explain what it does. The GitHub Action job now builds Python with the libpython dynamic library.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c1a01716566..f543a94af36 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -60,7 +60,8 @@ jobs:
run: sudo ./.github/workflows/posix-deps-apt.sh
- name: Build CPython
run: |
- ./configure --with-pydebug
+ # Build Python with the libpython dynamic library
+ ./configure --with-pydebug --enable-shared
make -j4 regen-all
- name: Check for changes
run: |