Skip to content

Commit 3abd633

Browse files
authored
Merge pull request #2082 from alex/libressl
fixes #2050 -- build and test on libressl 3.8.2
2 parents cf8c058 + 6f6e5c4 commit 3abd633

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ jobs:
190190
bindgen: true
191191
library:
192192
name: libressl
193-
version: 3.8.0
193+
version: 3.8.2
194194
- target: x86_64-unknown-linux-gnu
195195
bindgen: false
196196
library:
@@ -205,7 +205,7 @@ jobs:
205205
bindgen: false
206206
library:
207207
name: libressl
208-
version: 3.8.1
208+
version: 3.8.2
209209
name: ${{ matrix.target }}-${{ matrix.library.name }}-${{ matrix.library.version }}-${{ matrix.bindgen }}
210210
runs-on: ubuntu-latest
211211
env:

openssl-sys/build/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,7 @@ See rust-openssl documentation for more information:
292292
(3, 7, _) => ('3', '7', 'x'),
293293
(3, 8, 0) => ('3', '8', '0'),
294294
(3, 8, 1) => ('3', '8', '1'),
295+
(3, 8, _) => ('3', '8', 'x'),
295296
_ => version_error(),
296297
};
297298

0 commit comments

Comments
 (0)