File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
.ci/docker/manywheel/build_scripts Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,12 @@ function check_sha256sum {
2828 check_var ${fname}
2929 local sha256=$2
3030 check_var ${sha256}
31-
31+ # Compute and print actual checksum
32+ echo " ✅ Expected SHA256: ${openssl_sha256} "
33+ echo " 🔍 Calculating actual SHA256..."
34+ actual_sha256=$( sha256sum ${openssl_fname} .tar.gz | awk ' {print $1}' )
35+ echo " 🔴 Actual SHA256: $actual_sha256 "
36+
3237 echo " ${sha256} ${fname} " > ${fname} .sha256
3338 sha256sum -c ${fname} .sha256
3439 rm -f ${fname} .sha256
@@ -42,11 +47,6 @@ function build_openssl {
4247 check_var ${openssl_sha256}
4348 check_var ${OPENSSL_DOWNLOAD_URL}
4449 curl -sLO ${OPENSSL_DOWNLOAD_URL} /${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 "
5050
5151 check_sha256sum ${openssl_fname} .tar.gz ${openssl_sha256}
5252 tar -xzf ${openssl_fname} .tar.gz
You can’t perform that action at this time.
0 commit comments