summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorLuke Yeager <luke.yeager@gmail.com>2015-11-03 14:42:24 -0800
committerLuke Yeager <luke.yeager@gmail.com>2015-11-03 14:45:34 -0800
commitb2339716fd3c6ebb050be0241ba2a34f804ae904 (patch)
tree5c4c9109606be41747a7dc8827d73ff04b221af6 /scripts
parentf5fd18b6cd1371ec79b452d803756276a445abb1 (diff)
downloadcaffe-b2339716fd3c6ebb050be0241ba2a34f804ae904.tar.gz
caffe-b2339716fd3c6ebb050be0241ba2a34f804ae904.tar.bz2
caffe-b2339716fd3c6ebb050be0241ba2a34f804ae904.zip
TravisCI: wget cmake with --no-check-certificate
``` --2015-11-03 22:31:11-- http://www.cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh Resolving www.cmake.org (www.cmake.org)... 66.194.253.19 Connecting to www.cmake.org (www.cmake.org)|66.194.253.19|:80... connected. HTTP request sent, awaiting response... 301 Moved Permanently Location: http://cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh [following] --2015-11-03 22:31:11-- http://cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh Resolving cmake.org (cmake.org)... 66.194.253.19 Connecting to cmake.org (cmake.org)|66.194.253.19|:80... connected. HTTP request sent, awaiting response... 301 Moved Permanently Location: https://cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh [following] --2015-11-03 22:31:11-- https://cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh Connecting to cmake.org (cmake.org)|66.194.253.19|:443... connected. ERROR: no certificate subject alternative name matches requested host name `cmake.org'. To connect to cmake.org insecurely, use `--no-check-certificate'. ```
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/travis/travis_install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/travis/travis_install.sh b/scripts/travis/travis_install.sh
index d6c6e228..d78c4d2f 100755
--- a/scripts/travis/travis_install.sh
+++ b/scripts/travis/travis_install.sh
@@ -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