From: Christian Heimes Date: Fri, 17 Dec 2021 15:17:56 +0000 (+0200) Subject: bpo-44035: Show git diff after autoreconf and regen (GH-30117) X-Git-Tag: v3.11.0a4~172 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=da8cf8a74714f4cc34fb768345cb1caf9dcddd62;p=thirdparty%2FPython%2Fcpython.git bpo-44035: Show git diff after autoreconf and regen (GH-30117) --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4504b29432cd..e02e9ade1ae1 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