test_linux_binary_wheels.sh (tink-1.6.0) | : | test_linux_binary_wheels.sh (tink-1.6.1) | ||
---|---|---|---|---|
skipping to change at line 27 | skipping to change at line 27 | |||
set -euo pipefail | set -euo pipefail | |||
# The following assoicative array contains: | # The following assoicative array contains: | |||
# ["<Python version>"]="<python tag>-<abi tag>" | # ["<Python version>"]="<python tag>-<abi tag>" | |||
# where: | # where: | |||
# <Python version> = language version, e.g "3.7" | # <Python version> = language version, e.g "3.7" | |||
# <python tag-<abi tag> = tags as specified in in PEP 491, e.g. "cp37-37m" | # <python tag-<abi tag> = tags as specified in in PEP 491, e.g. "cp37-37m" | |||
declare -A PYTHON_VERSIONS | declare -A PYTHON_VERSIONS | |||
PYTHON_VERSIONS["3.7"]="cp37-cp37m" | PYTHON_VERSIONS["3.7"]="cp37-cp37m" | |||
PYTHON_VERSIONS["3.8"]="cp38-cp38" | PYTHON_VERSIONS["3.8"]="cp38-cp38" | |||
# TODO(ckl): Enable when macOS solution is in place. | PYTHON_VERSIONS["3.9"]="cp39-cp39" | |||
#PYTHON_VERSIONS["3.9"]="cp39-cp39" | ||||
readonly -A PYTHON_VERSIONS | readonly -A PYTHON_VERSIONS | |||
export TINK_SRC_PATH="/tmp/tink" | export TINK_SRC_PATH="/tmp/tink" | |||
# Required to fix https://github.com/pypa/manylinux/issues/357. | # Required to fix https://github.com/pypa/manylinux/issues/357. | |||
export LD_LIBRARY_PATH="/usr/local/lib" | export LD_LIBRARY_PATH="/usr/local/lib" | |||
# This link is required on CentOS, as curl used in the AWS SDK looks for the | # This link is required on CentOS, as curl used in the AWS SDK looks for the | |||
# certificates in this location. Removing this line will cause the AWS KMS tests | # certificates in this location. Removing this line will cause the AWS KMS tests | |||
# to fail. | # to fail. | |||
End of changes. 1 change blocks. | ||||
2 lines changed or deleted | 1 lines changed or added |