github: Add AWS-LC CI job

AWS-LC is an OpenSSL derivative which can be used with the openssl plugin.
This adds a CI job that resembles the openssl-3 test case. It downloads
the source tarball for an AWS-LC release, builds that source using
CMake/Ninja, and then builds/tests strongSwan using the same technique
used by openssl-3.

References strongswan/strongswan#1907
Closes strongswan/strongswan#2151
This commit is contained in:
Gerardo Ravago
2024-03-08 11:14:39 +01:00
committed by Tobias Brunner
parent fac42f7168
commit 1301c762d4
2 changed files with 36 additions and 2 deletions
+3 -1
View File
@@ -91,7 +91,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, ubuntu-20.04 ]
test: [ botan, wolfssl, openssl, openssl-3, gcrypt ]
test: [ botan, wolfssl, openssl, openssl-3, openssl-awslc, gcrypt ]
leak-detective: [ no, yes ]
exclude:
# test custom-built libs only on one platform
@@ -101,6 +101,8 @@ jobs:
test: wolfssl
- os: ubuntu-20.04
test: openssl-3
- os: ubuntu-20.04
test: openssl-awslc
env:
LEAK_DETECTIVE: ${{ matrix.leak-detective || 'no' }}
CC: ${{ matrix.compiler || 'gcc' }}