Skip to content

Commit

Permalink
Merge pull request #2082 from alex/libressl
Browse files Browse the repository at this point in the history
fixes #2050 -- build and test on libressl 3.8.2
  • Loading branch information
sfackler committed Nov 3, 2023
2 parents cf8c058 + 6f6e5c4 commit 3abd633
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down
1 change: 1 addition & 0 deletions openssl-sys/build/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
};

Expand Down

0 comments on commit 3abd633

Please sign in to comment.