diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2021-09-04 14:20:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-04 14:20:38 (GMT) |
commit | 6beaf2ffaecd92955c5b3c579f184cbecc222636 (patch) | |
tree | ff058fb85b503cc276ba3ca929aff42597ec8ceb | |
parent | 3beef86e22ade0ec629fcc349885fcec5ab43402 (diff) | |
download | cpython-6beaf2ffaecd92955c5b3c579f184cbecc222636.zip cpython-6beaf2ffaecd92955c5b3c579f184cbecc222636.tar.gz cpython-6beaf2ffaecd92955c5b3c579f184cbecc222636.tar.bz2 |
Check that 'configure' is generated by GNU Autoconf 2.69 (GH-28152)
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 05bdf24..27e07a5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -84,6 +84,8 @@ jobs: run: make smelly - name: Check limited ABI symbols run: make check-limited-abi + - name: Check Autoconf version 2.69 + run: grep "Generated by GNU Autoconf 2.69" configure build_win32: name: 'Windows (x86)' |