diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2023-12-24 15:36:59 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2023-12-30 01:37:15 +0100 |
commit | 2e8a580e45cb8f53eadece3bfc09a636e61679d7 (patch) | |
tree | f1b5776ba9486d37432e40dc1e6433c2191e9819 | |
parent | 5a0ddc6f125e29f175dc1886ff89227fbf49721c (diff) |
Add a CI build with OpenSSL 1.1
In Ubuntu 20.04 the libssl-dev package includes the version 1.1.1f as
reported by: https://packages.ubuntu.com/focal/libssl-dev
-rw-r--r-- | .github/workflows/build.yml | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0c47efc4..114d5fda 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,7 +39,7 @@ jobs: run: make check - name: make distcheck run: make distcheck - build-openssl: + build-openssl-3: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 @@ -57,3 +57,21 @@ jobs: run: make check - name: make distcheck run: make distcheck + build-openssl-1-1: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v1 + with: + fetch-depth: 1 + - name: Install FLTK + run: sudo apt install -y libfltk1.3-dev libssl-dev + - name: autogen + run: ./autogen.sh + - name: configure + run: ./configure --disable-mbedtls + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck |