@@ -136,10 +136,10 @@ jobs:
136136 run : echo "PATH=/usr/lib/ccache:$PATH" >> $GITHUB_ENV
137137 - name : Configure ccache action
138138 uses :
hendrikmuhs/[email protected] 139- - name : Check Autoconf version 2.69 and aclocal 1.16.3
139+ - name : Check Autoconf and aclocal versions
140140 run : |
141- grep "Generated by GNU Autoconf 2.69 " configure
142- grep "aclocal 1.16.3 " aclocal.m4
141+ grep "Generated by GNU Autoconf 2.71 " configure
142+ grep "aclocal 1.16.4 " aclocal.m4
143143 grep -q "runstatedir" configure
144144 grep -q "PKG_PROG_PKG_CONFIG" aclocal.m4
145145 - name : Configure CPython
@@ -235,9 +235,8 @@ jobs:
235235 run :
brew install pkg-config [email protected] xz gdbm tcl-tk 236236 - name : Configure CPython
237237 run : |
238- CFLAGS="-I$(brew --prefix gdbm)/include -I$(brew --prefix xz)/include" \
239- LDFLAGS="-L$(brew --prefix gdbm)/lib -I$(brew --prefix xz)/lib" \
240- PKG_CONFIG_PATH="$(brew --prefix tcl-tk)/lib/pkgconfig" \
238+ GDBM_CFLAGS="-I$(brew --prefix gdbm)/include" \
239+ GDBM_LIBS="-L$(brew --prefix gdbm)/lib -lgdbm" \
241240 ./configure \
242241 --config-cache \
243242 --with-pydebug \
@@ -257,7 +256,7 @@ jobs:
257256 needs : check_source
258257 if : needs.check_source.outputs.run_tests == 'true'
259258 env :
260- OPENSSL_VER : 1.1.1t
259+ OPENSSL_VER : 1.1.1u
261260 PYTHONSTRICTEXTENSIONBUILD : 1
262261 steps :
263262 - uses : actions/checkout@v3
@@ -326,7 +325,7 @@ jobs:
326325 strategy :
327326 fail-fast : false
328327 matrix :
329- openssl_ver : [1.1.1t , 3.0.8 , 3.1.0-beta1 ]
328+ openssl_ver : [1.1.1u , 3.0.9 , 3.1.1 ]
330329 env :
331330 OPENSSL_VER : ${{ matrix.openssl_ver }}
332331 MULTISSL_DIR : ${{ github.workspace }}/multissl
@@ -378,7 +377,7 @@ jobs:
378377 needs : check_source
379378 if : needs.check_source.outputs.run_tests == 'true' && needs.check_source.outputs.run_hypothesis == 'true'
380379 env :
381- OPENSSL_VER : 1.1.1t
380+ OPENSSL_VER : 1.1.1u
382381 PYTHONSTRICTEXTENSIONBUILD : 1
383382 steps :
384383 - uses : actions/checkout@v3
@@ -487,7 +486,7 @@ jobs:
487486 needs : check_source
488487 if : needs.check_source.outputs.run_tests == 'true'
489488 env :
490- OPENSSL_VER : 1.1.1t
489+ OPENSSL_VER : 1.1.1u
491490 PYTHONSTRICTEXTENSIONBUILD : 1
492491 ASAN_OPTIONS : detect_leaks=0:allocator_may_return_null=1:handle_segv=0
493492 steps :
0 commit comments