bpo-44035: Show git diff after autoreconf and regen (GH-30117)
https://github.com/python/cpython/commit/da8cf8a74714f4cc34fb768345cb1caf9dc... commit: da8cf8a74714f4cc34fb768345cb1caf9dcddd62 branch: main author: Christian Heimes <christian@python.org> committer: tiran <christian@python.org> date: 2021-12-17T16: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
participants (1)
-
tiran