Skip to content

Commit

Permalink
circle: Fix channel configuration and show test results
Browse files Browse the repository at this point in the history
  • Loading branch information
stuarteberg committed Aug 4, 2017
1 parent f0b188f commit dd6f3c9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,22 @@ dependencies:
if [[ ! -d ${CONDA_ROOT} ]]; then
echo "Installing Miniconda...";
wget --quiet https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh &&
bash Miniconda-latest-Linux-x86_64.sh -b -p ${CONDA_ROOT};
bash Miniconda3-latest-Linux-x86_64.sh -b -p ${CONDA_ROOT};
else
echo "Using cached Miniconda install";
fi
- conda config --add channels conda-forge
- conda config --add channels flyem-forge

- conda install --quiet -y anaconda-client

# Install neuroproof and all dependencies
- >
if [ ! -d ${TEST_ENV_PREFIX} ]; then
conda create --quiet -y -n ${TEST_ENV_NAME} -c flyem-forge neuroproof python=3;
conda create --quiet -y -n ${TEST_ENV_NAME} neuroproof python=3;
else
conda install --quiet -y -n ${TEST_ENV_NAME} -c flyem-forge neuroproof python=3;
conda install --quiet -y -n ${TEST_ENV_NAME} neuroproof python=3;
fi
# Remove neuroproof itself
Expand All @@ -53,4 +56,4 @@ test:
- cd build && make && cd -
- cd build && make install && cd -
- cd build && make test && cd -

- cat build/Testing/Temporary/LastTest.log

0 comments on commit dd6f3c9

Please sign in to comment.