diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-12-04 22:05:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-04 22:05:58 (GMT) |
commit | 85f1dedb8d05774e0d3739be0a11cd970b98097f (patch) | |
tree | 4f453d8a7426c7550e5d2500334946fbd68c356f /.travis.yml | |
parent | 2e0760bb2edb595050aff82f236cd32b44d3dfb3 (diff) | |
download | cpython-85f1dedb8d05774e0d3739be0a11cd970b98097f.zip cpython-85f1dedb8d05774e0d3739be0a11cd970b98097f.tar.gz cpython-85f1dedb8d05774e0d3739be0a11cd970b98097f.tar.bz2 |
bpo-42545: Check that all symbols in the limited ABI are exported (GH-23616)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index dfdf670..547d919 100644 --- a/.travis.yml +++ b/.travis.yml @@ -192,6 +192,8 @@ script: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./python Tools/scripts/patchcheck.py --travis $TRAVIS_PULL_REQUEST; fi # Check that all symbols exported by libpython start with "Py" or "_Py" - make smelly + # Check that all symbols in the limited abi are present + - make check-limited-abi # `-r -w` implicitly provided through `make buildbottest`. - | if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then |