diff options
author | Victor Stinner <vstinner@python.org> | 2020-11-24 12:38:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-24 12:38:08 (GMT) |
commit | ac7d0169d2bce2021b8d88973e649889d7dc1b03 (patch) | |
tree | 9a9b06a930f0a485525ac76f2dd5b8e305592b7a /.github/workflows | |
parent | 14d81dcaf827f6b66bda45e8f5689d07d7d5735c (diff) | |
download | cpython-ac7d0169d2bce2021b8d88973e649889d7dc1b03.zip cpython-ac7d0169d2bce2021b8d88973e649889d7dc1b03.tar.gz cpython-ac7d0169d2bce2021b8d88973e649889d7dc1b03.tar.bz2 |
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/workflows')
-rw-r--r-- | .github/workflows/build.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c1a0171..f543a94 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: | |