Skip to content

Commit a23cb72

Browse files
authored
gh-100454: Start running SSL tests with OpenSSL 3.1.0-beta1 (#100456)
1 parent 7ca45e5 commit a23cb72

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
@@ -235,7 +235,7 @@ jobs:
235235
strategy:
236236
fail-fast: false
237237
matrix:
238-
openssl_ver: [1.1.1s, 3.0.7]
238+
openssl_ver: [1.1.1s, 3.0.7, 3.1.0-beta1]
239239
env:
240240
OPENSSL_VER: ${{ matrix.openssl_ver }}
241241
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
@@ -402,15 +402,15 @@ class BuildOpenSSL(AbstractBuilder):
402402
depend_target = 'depend'
403403

404404
def _post_install(self):
405-
if self.version.startswith("3.0"):
406-
self._post_install_300()
405+
if self.version.startswith("3."):
406+
self._post_install_3xx()
407407

408408
def _build_src(self, config_args=()):
409-
if self.version.startswith("3.0"):
409+
if self.version.startswith("3."):
410410
config_args += ("enable-fips",)
411411
super()._build_src(config_args)
412412

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

0 commit comments

Comments
 (0)