[Python-checkins] Check that 'configure' is generated by GNU Autoconf 2.69 (GH-28152)

pablogsal webhook-mailer at python.org
Sat Sep 4 10:20:42 EDT 2021


https://github.com/python/cpython/commit/6beaf2ffaecd92955c5b3c579f184cbecc222636
commit: 6beaf2ffaecd92955c5b3c579f184cbecc222636
branch: main
author: Pablo Galindo Salgado <Pablogsal at gmail.com>
committer: pablogsal <Pablogsal at gmail.com>
date: 2021-09-04T15:20:38+01:00
summary:

Check that 'configure' is generated by GNU Autoconf 2.69 (GH-28152)

files:
M .github/workflows/build.yml

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 05bdf2445a234..27e07a5f91bf3 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)'



More information about the Python-checkins mailing list