Unverified Commit 3abd633a authored by Steven Fackler's avatar Steven Fackler Committed by GitHub
Browse files

Merge pull request #2082 from alex/libressl

fixes #2050 -- build and test on libressl 3.8.2
parents cf8c0585 6f6e5c4f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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:
+1 −0
Original line number Diff line number Diff line
@@ -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(),
        };