Skip to content

Commit 7c2d9c3

Browse files
nightly build changes except 313
1 parent f9b7831 commit 7c2d9c3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.ci/docker/manywheel/build_scripts/build_utils.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,12 @@ function build_openssl {
4242
check_var ${openssl_sha256}
4343
check_var ${OPENSSL_DOWNLOAD_URL}
4444
curl -sLO ${OPENSSL_DOWNLOAD_URL}/${openssl_fname}.tar.gz
45-
sha256sum ${openssl_fname}.tar.gz
45+
# Compute and print actual checksum
46+
echo "✅ Expected SHA256: ${openssl_sha256}"
47+
echo "🔍 Calculating actual SHA256..."
48+
actual_sha256=$(sha256sum ${openssl_fname}.tar.gz | awk '{print $1}')
49+
echo "🔴 Actual SHA256: $actual_sha256"
50+
4651
check_sha256sum ${openssl_fname}.tar.gz ${openssl_sha256}
4752
tar -xzf ${openssl_fname}.tar.gz
4853
(cd ${openssl_fname} && do_openssl_build)

0 commit comments

Comments
 (0)