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

ambv webhook-mailer at python.org
Tue Sep 7 13:30:52 EDT 2021


https://github.com/python/cpython/commit/5a7a35467ad6b42616327e494a9be2387c078789
commit: 5a7a35467ad6b42616327e494a9be2387c078789
branch: 3.9
author: Pablo Galindo Salgado <Pablogsal at gmail.com>
committer: ambv <lukasz at langa.pl>
date: 2021-09-07T19:30:48+02:00
summary:

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

files:
M .github/workflows/build.yml

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index e37e1d3cf1855..9f06fd33cc07e 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -99,6 +99,8 @@ jobs:
           fi
       - name: Check exported libpython symbols
         run: make smelly
+      - 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