代码拉取完成,页面将自动刷新
同步操作将从 qiaodian/zao-test 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
# Adapted from https://github.com/kangwonlee/travis-yml-conda-posix-nt/blob/master/.travis.yml
language: shell
env:
global:
- CONDA_PYTHON=3.6
- CONDA_BLD_PATH=${HOME}/conda-bld
os:
- linux
# - windows
# - osx
cache:
# More time is needed for caching due to the sheer size of the conda env.
timeout: 1000
directories:
- ${HOME}/cache
before_cache:
# adapted from https://github.com/theochem/cgrid/blob/master/.travis.yml
- rm -rf ${MINICONDA_PATH}/conda-bld
- rm -rf ${MINICONDA_PATH}/locks
- rm -rf ${MINICONDA_PATH}/pkgs
- rm -rf ${MINICONDA_PATH}/var
- rm -rf ${MINICONDA_PATH}/envs/*/conda-bld
- rm -rf ${MINICONDA_PATH}/envs/*/locks
- rm -rf ${MINICONDA_PATH}/envs/*/pkgs
- rm -rf ${MINICONDA_PATH}/envs/*/var
# Clean out test results
- rm -rf ${HOME}/cache/tests/*/faces
- rm -rf ${HOME}/cache/tests/*/conv
- rm -rf ${HOME}/cache/tests/*/*.json
- rm -rf ${HOME}/cache/tests/vid/faces_sorted
- rm -rf ${HOME}/cache/tests/vid/model
before_install:
# set conda path info
- |
if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then
MINICONDA_PATH=${HOME}/cache/miniconda;
MINICONDA_SUB_PATH=$MINICONDA_PATH/bin;
elif [[ "$TRAVIS_OS_NAME" == "windows" ]]; then
MINICONDA_PATH=${HOME}/cache/miniconda3/;
MINICONDA_PATH_WIN=`cygpath --windows $MINICONDA_PATH`;
MINICONDA_SUB_PATH=$MINICONDA_PATH/Scripts;
fi;
# obtain miniconda installer
- |
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
# Not used at the moment, but in case we want to also run test on osx, we can.
elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh;
fi;
install:
# install miniconda
# pip and conda will also need OpenSSL for Windows
- |
if test -e "$MINICONDA_PATH"; then
echo "Conda already installed";
else
echo "Installing conda";
if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then
bash miniconda.sh -b -p $MINICONDA_PATH;
elif [[ "$TRAVIS_OS_NAME" == "windows" ]]; then
choco install openssl.light;
choco install miniconda3 --params="'/AddToPath:1 /D:$MINICONDA_PATH_WIN'";
fi;
fi;
- export PATH="$MINICONDA_PATH:$MINICONDA_SUB_PATH:$PATH";
# for conda version 4.4 or later
- source $MINICONDA_PATH/etc/profile.d/conda.sh;
- hash -r;
- conda config --set always_yes yes --set changeps1 no;
- conda update -q conda;
# Useful for debugging any issues with conda
- conda info -a
- echo "Python $CONDA_PYTHON running on $TRAVIS_OS_NAME";
# Only create the environment if we don't have it already
- conda env list | grep faceswap || conda create -q --name faceswap python=$CONDA_PYTHON;
- conda activate faceswap;
- conda --version ; python --version ; pip --version;
- python setup.py --installer;
# For debugging purposes
- df -h
script:
- python simple_tests.py;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。