We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9b7831 commit 7c2d9c3Copy full SHA for 7c2d9c3
.ci/docker/manywheel/build_scripts/build_utils.sh
@@ -42,7 +42,12 @@ function build_openssl {
42
check_var ${openssl_sha256}
43
check_var ${OPENSSL_DOWNLOAD_URL}
44
curl -sLO ${OPENSSL_DOWNLOAD_URL}/${openssl_fname}.tar.gz
45
- sha256sum ${openssl_fname}.tar.gz
+ # 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
+
51
check_sha256sum ${openssl_fname}.tar.gz ${openssl_sha256}
52
tar -xzf ${openssl_fname}.tar.gz
53
(cd ${openssl_fname} && do_openssl_build)
0 commit comments