From efa4deb3c6afc2e87bd7075f8d713d16c33f39ee Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Sun, 24 Dec 2023 15:36:59 +0100 Subject: [PATCH] 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 --- .github/workflows/build.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) 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