leandron commented on code in PR #11829: URL: https://github.com/apache/tvm/pull/11829#discussion_r903757994
########## docker/install/ubuntu_install_tensorflow_aarch64.sh: ########## @@ -21,11 +21,26 @@ set -euxo pipefail # Build dependencies apt-install-and-clear -y --no-install-recommends libhdf5-dev +# Downloading Tensorflow and installing it manually is needed +# just as a temporary workaround while we move to a newer +# version (>2.7) that is hosted in the official PyPI repository. +linaro_repo="https://snapshots.linaro.org/ldcg/python/tensorflow-manylinux/43/tensorflow-aarch64" +tensorflow_package="tensorflow_aarch64-2.6.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" +tmpdir=$(mktemp -d) + +cleanup() +{ + rm -rf "$tmpdir" +} + +trap cleanup 0 + Review Comment: I'm missing to `cd` into my tmpdir. I will update this once I test the change. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
