#!/usr/bin/env bash # This script is for setting up environment in which unit test is ran. # To speed up the CI time, the resulting environment is cached. # # Do not install PyTorch and torchvision here, otherwise they also get cached. set -e this_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" root_dir="$(git rev-parse --show-toplevel)" conda_dir="${root_dir}/conda" env_dir="${root_dir}/env" cd "${root_dir}" case "$(uname -s)" in Darwin*) os=MacOSX;; *) os=Linux esac # 1. Install conda at ./conda if [ ! -d "${conda_dir}" ]; then printf "* Installing conda\n" wget -O miniconda.sh "http://repo.continuum.io/miniconda/Miniconda3-latest-${os}-x86_64.sh" bash ./miniconda.sh -b -f -p "${conda_dir}" fi eval "$(${conda_dir}/bin/conda shell.bash hook)" # 2. Create test environment at ./env if [ ! -d "${env_dir}" ]; then printf "* Creating a test environment\n" conda create --prefix "${env_dir}" -y python="$PYTHON_VERSION" fi conda activate "${env_dir}" # 3. Install Conda dependencies printf "* Installing dependencies (except PyTorch)\n" FFMPEG_PIN="=4.2" if [[ "${PYTHON_VERSION}" = "3.9" ]]; then FFMPEG_PIN=">=4.2" fi conda install -y -c pytorch "ffmpeg${FFMPEG_PIN}" conda env update --file "${this_dir}/environment.yml" --prune