mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
[3.10] Add an error message to the ABI-dump file check (#94131)
This commit is contained in:
parent
64b02c6304
commit
ee2ddc2d44
1 changed files with 10 additions and 1 deletions
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
|
|
@ -73,7 +73,16 @@ jobs:
|
|||
./configure --enable-shared
|
||||
make -j4
|
||||
- name: Check for changes in the ABI
|
||||
run: make check-abidump
|
||||
run: |
|
||||
make check-abidump
|
||||
if [ $? -neq 0 ] ; then
|
||||
echo "Generated ABI file is not up to date."
|
||||
echo "Please, add the release manager of this branch as a reviewer of this PR."
|
||||
echo ""
|
||||
echo "To learn more about this check, please visit: https://devguide.python.org/setup/?highlight=abi#regenerate-the-abi-dump"
|
||||
echo ""
|
||||
exit 1
|
||||
fi
|
||||
|
||||
check_generated_files:
|
||||
name: 'Check if generated files are up to date'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue