summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2023-12-24 15:36:59 +0100
committerRodrigo Arias Mallo <rodarima@gmail.com>2023-12-30 01:37:15 +0100
commit2e8a580e45cb8f53eadece3bfc09a636e61679d7 (patch)
treef1b5776ba9486d37432e40dc1e6433c2191e9819 /.github
parent5a0ddc6f125e29f175dc1886ff89227fbf49721c (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
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml20
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