Skip to content

Commit

Permalink
Temporal fix for downloading CMake on Travis-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ixartz committed Nov 3, 2015
1 parent dd33d18 commit f871229
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/travis/travis_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ apt-get install \
# Caffe requires a minimum CMake version of 2.8.8.
if $WITH_CMAKE; then
# cmake 3 will make sure that the python interpreter and libraries match
wget http://www.cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh -O cmake3.sh
wget --no-check-certificate http://www.cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh -O cmake3.sh
chmod +x cmake3.sh
./cmake3.sh --prefix=/usr/ --skip-license --exclude-subdir
fi
Expand Down Expand Up @@ -68,7 +68,7 @@ if [ ! -d $CONDA_DIR ]; then
fi
chmod +x miniconda.sh
./miniconda.sh -b -p $CONDA_DIR

conda update --yes conda
conda install --yes numpy scipy matplotlib scikit-image pip
# Let conda install boost (so that boost_python matches)
Expand Down

0 comments on commit f871229

Please sign in to comment.