Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions ansible/roles/docker/templates/ubuntu2204_sharedlibs.Dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,17 @@ RUN mkdir -p /tmp/openssl-$OPENSSL32VER && \
make install && \
rm -rf /tmp/openssl-$OPENSSL32VER

ENV OPENSSL35VER 3.5.0-alpha1
ENV OPENSSL35DIR /opt/openssl-$OPENSSL35VER

RUN mkdir -p /tmp/openssl-$OPENSSL35VER && \
cd /tmp/openssl-$OPENSSL35VER && \
curl -sL https://github.com/openssl/openssl/releases/download/openssl-$OPENSSL35VER/openssl-$OPENSSL35VER.tar.gz | tar zxv --strip=1 && \
./config --prefix=$OPENSSL35DIR && \
make -j $JOBS && \
make install && \
rm -rf /tmp/openssl-$OPENSSL35VER

ENV ZLIBVER 1.2.13
ENV ZLIB12DIR /opt/zlib_$ZLIBVER

Expand Down
1 change: 1 addition & 0 deletions jenkins/scripts/VersionSelectorScript.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ def buildExclusions = [
[ /sharedlibs_debug_x64/, anyType, gte(18) ],
[ /sharedlibs_openssl110/, anyType, gte(18) ],
[ /sharedlibs_openssl102/, anyType, gte(18) ],
[ /sharedlibs_openssl35/, anyType, lt(24) ], // Temporary until test fixes are backported
[ /sharedlibs_fips20/, anyType, gte(18) ],

// OSX ---------------------------------------------------
Expand Down
Loading