* [3.11] gh-123418: Update CI to use fresh OpenSSL releases (GH-123675)
Also adds openssl/openssl GitHub URL template for newer OpenSSL downloads
(cherry picked from commit
56b00f4705634af2861a8aa9c2eb5769012220f0)
Co-authored-by: Zachary Ware <zach@python.org>
* Adjust build_ubuntu_ssltests job to use cache for the correct OS version
fail-fast: false
matrix:
os: [ubuntu-20.04]
- openssl_ver: [1.1.1w, 3.0.13, 3.1.5, 3.2.1]
+ openssl_ver: [1.1.1w, 3.0.15, 3.1.7, 3.2.3]
env:
OPENSSL_VER: ${{ matrix.openssl_ver }}
MULTISSL_DIR: ${{ github.workspace }}/multissl
needs: check_source
if: needs.check_source.outputs.run_tests == 'true'
env:
- OPENSSL_VER: 3.0.13
+ OPENSSL_VER: 3.0.15
PYTHONSTRICTEXTENSIONBUILD: 1
ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
steps:
matrix:
os: [ubuntu-20.04]
env:
- OPENSSL_VER: 3.0.13
+ OPENSSL_VER: 3.0.15
PYTHONSTRICTEXTENSIONBUILD: 1
steps:
- uses: actions/checkout@v4
--- /dev/null
+Update GitHub CI workflows to use OpenSSL 3.0.15 and multissltests to use
+3.0.15, 3.1.7, and 3.2.3.
OPENSSL_RECENT_VERSIONS = [
"1.1.1w",
- "3.0.13",
- "3.1.5",
- "3.2.1",
+ "3.0.15",
+ "3.1.7",
+ "3.2.3",
]
LIBRESSL_OLD_VERSIONS = [
class BuildOpenSSL(AbstractBuilder):
library = "OpenSSL"
url_templates = (
+ "https://github.com/openssl/openssl/releases/download/openssl-{v}/openssl-{v}.tar.gz",
"https://www.openssl.org/source/openssl-{v}.tar.gz",
"https://www.openssl.org/source/old/{s}/openssl-{v}.tar.gz"
)
parsed = parsed[:2]
return ".".join(str(i) for i in parsed)
+
class BuildLibreSSL(AbstractBuilder):
library = "LibreSSL"
url_templates = (