From 6f6e5c4f02c370c594ccf404a4a67e366d26ad1c Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 2 Nov 2023 21:50:11 -0700 Subject: [PATCH] fixes #2050 -- build and test on libressl 3.8.2 --- .github/workflows/ci.yml | 4 ++-- openssl-sys/build/main.rs | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 724c125cea..1bb0155986 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -190,7 +190,7 @@ jobs: bindgen: true library: name: libressl - version: 3.8.0 + version: 3.8.2 - target: x86_64-unknown-linux-gnu bindgen: false library: @@ -205,7 +205,7 @@ jobs: bindgen: false library: name: libressl - version: 3.8.1 + version: 3.8.2 name: ${{ matrix.target }}-${{ matrix.library.name }}-${{ matrix.library.version }}-${{ matrix.bindgen }} runs-on: ubuntu-latest env: diff --git a/openssl-sys/build/main.rs b/openssl-sys/build/main.rs index cd732ca46a..bbee7c5c0d 100644 --- a/openssl-sys/build/main.rs +++ b/openssl-sys/build/main.rs @@ -292,6 +292,7 @@ See rust-openssl documentation for more information: (3, 7, _) => ('3', '7', 'x'), (3, 8, 0) => ('3', '8', '0'), (3, 8, 1) => ('3', '8', '1'), + (3, 8, _) => ('3', '8', 'x'), _ => version_error(), };