There was an error while loading. Please reload this page.
1 parent 2e0760b commit 85f1dedCopy full SHA for 85f1ded
5 files changed
.github/workflows/build.yml
@@ -75,6 +75,8 @@ jobs:
75
fi
76
- name: Check exported libpython symbols
77
run: make smelly
78
+ - name: Check limited ABI symbols
79
+ run: make check-limited-abi
80
81
build_win32:
82
name: 'Windows (x86)'
.travis.yml
@@ -192,6 +192,8 @@ script:
192
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./python Tools/scripts/patchcheck.py --travis $TRAVIS_PULL_REQUEST; fi
193
# Check that all symbols exported by libpython start with "Py" or "_Py"
194
- make smelly
195
+ # Check that all symbols in the limited abi are present
196
+ - make check-limited-abi
197
# `-r -w` implicitly provided through `make buildbottest`.
198
- |
199
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
0 commit comments