[Python-checkins] bpo-44035: Show git diff after autoreconf and regen (GH-30117)
tiran
webhook-mailer at python.org
Fri Dec 17 10:18:00 EST 2021
https://github.com/python/cpython/commit/da8cf8a74714f4cc34fb768345cb1caf9dcddd62
commit: da8cf8a74714f4cc34fb768345cb1caf9dcddd62
branch: main
author: Christian Heimes <christian at python.org>
committer: tiran <christian at python.org>
date: 2021年12月17日T16:17:56+01:00
summary:
bpo-44035: Show git diff after autoreconf and regen (GH-30117)
files:
M .github/workflows/build.yml
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 4504b29432cd2..e02e9ade1ae13 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -90,8 +90,10 @@ jobs:
if test -n "$changes"; then
echo "Generated files not up to date."
echo "Perhaps you forgot to run make regen-all or build.bat --regen. ;)"
- echo "configure files must be regenerated with a specific, unpatched version of autoconf."
+ echo "configure files must be regenerated with a specific version of autoconf."
echo "$changes"
+ echo ""
+ git diff --staged || true
exit 1
fi
- name: Check exported libpython symbols
More information about the Python-checkins
mailing list