Skip to content

Commit

Permalink
Add a CI build with OpenSSL 1.1
Browse files Browse the repository at this point in the history
In Ubuntu 20.04 the libssl-dev package includes the version 1.1.1f as
reported by: https://packages.ubuntu.com/focal/libssl-dev
  • Loading branch information
rodarima committed Dec 24, 2023
1 parent 9ae760c commit 6f56d07
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 6f56d07

Please sign in to comment.