#!/bin/bash set -xe source $(dirname "$0")/tc-tests-utils.sh pyver_full=$1 aot_model=$2 if [ -z "${pyver_full}" ]; then echo "No python version given, aborting." exit 1 fi; pyver=$(echo "${pyver_full}" | cut -d':' -f1) # 2.7.x => 27 pyver_pkg=$(echo "${pyver}" | cut -d'.' -f1,2 | tr -d '.') py_unicode_type=$(echo "${pyver_full}" | cut -d':' -f2) if [ "${py_unicode_type}" = "m" ]; then pyconf="ucs2" elif [ "${py_unicode_type}" = "mu" ]; then pyconf="ucs4" fi; unset PYTHON_BIN_PATH unset PYTHONPATH export PYENV_ROOT="${DS_ROOT_TASK}/ds-test/.pyenv" export PATH="${PYENV_ROOT}/bin:$PATH" mkdir -p ${PYENV_ROOT} || true download_data install_pyenv "${PYENV_ROOT}" install_pyenv_virtualenv "$(pyenv root)/plugins/pyenv-virtualenv" maybe_ssl102_py37 ${pyver} PYENV_NAME=deepspeech-test LD_LIBRARY_PATH=${PY37_LDPATH}:$LD_LIBRARY_PATH PYTHON_CONFIGURE_OPTS="--enable-unicode=${pyconf} ${PY37_OPENSSL} ${EXTRA_PYTHON_CONFIGURE_OPTS}" pyenv install ${pyver} pyenv virtualenv ${pyver} ${PYENV_NAME} source ${PYENV_ROOT}/versions/${pyver}/envs/${PYENV_NAME}/bin/activate platform=$(python -c 'import sys; import platform; plat = platform.system().lower(); arch = platform.machine().lower(); plat = "manylinux1" if plat == "linux" and arch == "x86_64" else plat; plat = "macosx_10_10" if plat == "darwin" else plat; sys.stdout.write("%s_%s" % (plat, platform.machine()));') whl_ds_version="$(python -c 'from pkg_resources import parse_version; print(parse_version("'${DS_VERSION}'"))')" deepspeech_pkg="deepspeech-${whl_ds_version}-cp${pyver_pkg}-cp${pyver_pkg}${py_unicode_type}-${platform}.whl" if [ "${aot_model}" = "--aot" ]; then deepspeech_pkg_url=${DEEPSPEECH_AOT_ARTIFACTS_ROOT}/${deepspeech_pkg} else deepspeech_pkg_url=${DEEPSPEECH_ARTIFACTS_ROOT}/${deepspeech_pkg} fi LD_LIBRARY_PATH=${PY37_LDPATH}:$LD_LIBRARY_PATH pip install --verbose --only-binary :all: ${PY37_SOURCE_PACKAGE} --upgrade ${deepspeech_pkg_url} | cat run_all_inference_tests deactivate pyenv uninstall --force ${PYENV_NAME}