#!/usr/bin/env bash if [[ -x "/remote/anaconda_token" ]]; then . /remote/anaconda_token || true fi set -ex # Function to retry functions that sometimes timeout or have flaky failures retry () { $* || (sleep 1 && $*) || (sleep 2 && $*) || (sleep 4 && $*) || (sleep 8 && $*) } export TORCHAUDIO_BUILD_VERSION="0.2.0" export TORCHAUDIO_BUILD_NUMBER=1 SOURCE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" audio_rootdir="$(pwd)/torchaudio-src" if [[ ! -d "$audio_rootdir" ]]; then rm -rf "$audio_rootdir" git clone "https://github.com/pytorch/audio" "$audio_rootdir" pushd "$audio_rootdir" git checkout v$TORCHAUDIO_BUILD_VERSION popd fi cd "$SOURCE_DIR" ANACONDA_USER=pytorch conda config --set anaconda_upload no # "$desired_cuda" == 'cpu' export TORCHAUDIO_PACKAGE_SUFFIX="" export CONDA_CUDATOOLKIT_CONSTRAINT="" export CUDA_VERSION="None" if [[ "$OSTYPE" != "darwin"* ]]; then export TORCHAUDIO_PACKAGE_SUFFIX="-cpu" else export MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ fi time conda build -c $ANACONDA_USER --no-anaconda-upload --python 2.7 torchaudio time conda build -c $ANACONDA_USER --no-anaconda-upload --python 3.5 torchaudio time conda build -c $ANACONDA_USER --no-anaconda-upload --python 3.6 torchaudio time conda build -c $ANACONDA_USER --no-anaconda-upload --python 3.7 torchaudio set +e