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