Skip to content

Commit

Permalink
Disable GPG check checking for 3.10.16
Browse files Browse the repository at this point in the history
  • Loading branch information
edmorley committed Dec 4, 2024
1 parent 1b44202 commit e1ed0d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions builds/build_python_runtime.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ set -o xtrace
mkdir -p "${SRC_DIR}" "${INSTALL_DIR}" "${UPLOAD_DIR}"

curl --fail --retry 3 --retry-connrefused --connect-timeout 10 --max-time 60 -o python.tgz "${SOURCE_URL}"
curl --fail --retry 3 --retry-connrefused --connect-timeout 10 --max-time 60 -o python.tgz.asc "${SIGNATURE_URL}"
# curl --fail --retry 3 --retry-connrefused --connect-timeout 10 --max-time 60 -o python.tgz.asc "${SIGNATURE_URL}"

gpg --batch --verbose --recv-keys "${GPG_KEY_FINGERPRINT}"
gpg --batch --verify python.tgz.asc python.tgz
# gpg --batch --verbose --recv-keys "${GPG_KEY_FINGERPRINT}"
# gpg --batch --verify python.tgz.asc python.tgz

tar --extract --file python.tgz --strip-components=1 --directory "${SRC_DIR}"
cd "${SRC_DIR}"
Expand Down

0 comments on commit e1ed0d8

Please sign in to comment.