Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: bump OpenSSL to 3.0.15 #821

Merged
merged 1 commit into from
Sep 16, 2024
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
4 changes: 2 additions & 2 deletions .actions/build-linux-openssl3-clang
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ FAKEROOT="$(mktemp -d)"
# Check exports.
(cd src && ./diff_exports.sh)

# Build and install OpenSSL 3.0.14.
git clone --branch openssl-3.0.14 \
# Build and install OpenSSL 3.0.15.
git clone --branch openssl-3.0.15 \
--depth=1 https://github.com/openssl/openssl
cd openssl
./Configure linux-x86_64-clang --prefix="${FAKEROOT}" \
Expand Down
4 changes: 2 additions & 2 deletions .actions/build-linux-openssl3-gcc
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
${CC} --version
FAKEROOT="$(mktemp -d)"

# Build and install OpenSSL 3.0.14.
git clone --branch openssl-3.0.14 \
# Build and install OpenSSL 3.0.15.
git clone --branch openssl-3.0.15 \
--depth=1 https://github.com/openssl/openssl
cd openssl
./Configure linux-x86_64 --prefix="${FAKEROOT}" \
Expand Down
4 changes: 2 additions & 2 deletions .actions/build-linux-openssl3-i686-w64-mingw32-gcc
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ make -j"$(nproc)" -C build
sudo make -C build install
cd ..

# Build and install OpenSSL 3.0.14.
git clone --branch openssl-3.0.14 \
# Build and install OpenSSL 3.0.15.
git clone --branch openssl-3.0.15 \
--depth=1 https://github.com/openssl/openssl
cd openssl
./Configure mingw --prefix=/fakeroot --openssldir=/fakeroot/openssl \
Expand Down
2 changes: 1 addition & 1 deletion .actions/fuzz-linux
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ LIBCBOR_TAG="v0.11.0"
LIBCBOR_ASAN="address alignment bounds"
LIBCBOR_MSAN="memory"
OPENSSL_URL="https://github.com/openssl/openssl"
OPENSSL_TAG="openssl-3.0.14"
OPENSSL_TAG="openssl-3.0.15"
ZLIB_URL="https://github.com/madler/zlib"
ZLIB_TAG="v1.3.1"
ZLIB_ASAN="address alignment bounds undefined"
Expand Down
Loading