Skip to content

Commit f055a5d

Browse files
committed
- update to OpenSSL 3.2.1
- test with no-engine - test with -Werror
1 parent e3c180c commit f055a5d

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

.github/workflows/linux.yml

+20-3
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,31 @@ jobs:
2828
fail-fast: false
2929
matrix:
3030
include:
31-
- name: OpenSSL 3.2.0 build
31+
- name: OpenSSL 3.2.1 build
3232
config: --enable-mods-shared=reallyall --enable-maintainer-mode
3333
env: |
34-
TEST_OPENSSL3=3.2.0
34+
TEST_OPENSSL3=3.2.1
35+
APR_VERSION=1.7.4
36+
APU_VERSION=1.6.3
37+
APU_CONFIG="--with-crypto"
38+
CLEAR_CACHE=1
39+
- name: OpenSSL 3.2.1 -Werror build
40+
config: --enable-mods-shared=reallyall --enable-maintainer-mode
41+
notest-cflags: -Werror -O2
42+
env: |
43+
TEST_OPENSSL3=3.2.1
44+
APR_VERSION=1.7.4
45+
APU_VERSION=1.6.3
46+
APU_CONFIG="--with-crypto"
47+
CLEAR_CACHE=1
48+
- name: OpenSSL 3.2.0 no-engine build
49+
config: --enable-mods-shared=reallyall --enable-maintainer-mode
50+
env: |
51+
TEST_OPENSSL3=3.2.1
52+
OPENSSL_CONFIG=no-engine
3553
APR_VERSION=1.7.4
3654
APU_VERSION=1.6.3
3755
APU_CONFIG="--with-crypto"
38-
TEST_INSTALL=1
3956
CLEAR_CACHE=1
4057
runs-on: ubuntu-latest
4158
timeout-minutes: 30

test/travis_before_linux.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ if test -v TEST_OPENSSL3; then
119119
curl "https://www.openssl.org/source/openssl-${TEST_OPENSSL3}.tar.gz" |
120120
tar -xzf -
121121
cd openssl-${TEST_OPENSSL3}
122-
./Configure --prefix=$HOME/root/openssl3 shared no-tests
122+
./Configure --prefix=$HOME/root/openssl3 shared no-tests ${OPENSSL_CONFIG}
123123
make $MFLAGS
124124
make install_sw
125125
touch $HOME/root/openssl-is-${TEST_OPENSSL3}

0 commit comments

Comments
 (0)