We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64b02c6 commit ee2ddc2Copy full SHA for ee2ddc2
.github/workflows/build.yml
@@ -73,7 +73,16 @@ jobs:
73
./configure --enable-shared
74
make -j4
75
- name: Check for changes in the ABI
76
- run: make check-abidump
+ run: |
77
+ make check-abidump
78
+ if [ $? -neq 0 ] ; then
79
+ echo "Generated ABI file is not up to date."
80
+ echo "Please, add the release manager of this branch as a reviewer of this PR."
81
+ echo ""
82
+ echo "To learn more about this check, please visit: https://devguide.python.org/setup/?highlight=abi#regenerate-the-abi-dump"
83
84
+ exit 1
85
+ fi
86
87
check_generated_files:
88
name: 'Check if generated files are up to date'
0 commit comments