Skip to content

Commit 965cea7

Browse files
illia-vgpshead
authored andcommitted
[3.11] pythongh-100454: Start running SSL tests with OpenSSL 3.1.0-beta1 (pythonGH-100456).
(cherry picked from commit a23cb72) Co-authored-by: Illia Volochii <[email protected]>
1 parent 9477594 commit 965cea7

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ jobs:
268268
strategy:
269269
fail-fast: false
270270
matrix:
271-
openssl_ver: [1.1.1q, 3.0.5]
271+
openssl_ver: [1.1.1s, 3.0.7, 3.1.0-beta1]
272272
env:
273273
OPENSSL_VER: ${{ matrix.openssl_ver }}
274274
MULTISSL_DIR: ${{ github.workspace }}/multissl
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Start running SSL tests with OpenSSL 3.1.0-beta1.

Tools/ssl/multissltests.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -403,15 +403,15 @@ class BuildOpenSSL(AbstractBuilder):
403403
depend_target = 'depend'
404404

405405
def _post_install(self):
406-
if self.version.startswith("3.0"):
407-
self._post_install_300()
406+
if self.version.startswith("3."):
407+
self._post_install_3xx()
408408

409409
def _build_src(self, config_args=()):
410-
if self.version.startswith("3.0"):
410+
if self.version.startswith("3."):
411411
config_args += ("enable-fips",)
412412
super()._build_src(config_args)
413413

414-
def _post_install_300(self):
414+
def _post_install_3xx(self):
415415
# create ssl/ subdir with example configs
416416
# Install FIPS module
417417
self._subprocess_call(

0 commit comments

Comments
 (0)