We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ee4980 commit 99de334Copy full SHA for 99de334
.travis.yml
@@ -32,7 +32,7 @@ matrix:
32
- MATRIX_EVAL="CC=clang && CXX=clang++"
33
34
- os: osx
35
- osx_image: xcode7.3
+ osx_image: xcode6.4
36
sudo: true
37
language: cpp
38
env:
checkout-deps.sh
@@ -53,9 +53,9 @@ if [ $? -eq 1 ]; then
53
get_pip_url="https://bootstrap.pypa.io/get-pip.py"
54
55
if [ `command -v wget` ]; then
56
- wget $get_pip_url -O $get_pip
+ wget $get_pip_url -O $get_pip --no-check-certificate
57
elif [ `command -v curl` ]; then
58
- curl -o $get_pip $get_pip_url
+ curl -o $get_pip $get_pip_url --insecure
59
else
60
echo "Failed to locate wget or curl. Install one of these programs to download 'get-pip.py'."
61
exit 1
0 commit comments