Commit f031e20b by Edward Thomson

travis: build with patched libcurl

Ubuntu trusty has a bug in curl when using NTLM credentials in a proxy,
dereferencing a null pointer and causing segmentation faults.  Use a
custom-patched version of libcurl that avoids this issue.
parent e0568621
...@@ -20,17 +20,8 @@ env: ...@@ -20,17 +20,8 @@ env:
- OPTIONS="-DTHREADSAFE=ON -DCMAKE_BUILD_TYPE=Release" - OPTIONS="-DTHREADSAFE=ON -DCMAKE_BUILD_TYPE=Release"
- OPTIONS="-DTHREADSAFE=OFF -DBUILD_EXAMPLES=ON" - OPTIONS="-DTHREADSAFE=OFF -DBUILD_EXAMPLES=ON"
addons:
apt:
packages:
- cmake
- libssh2-1-dev
- openssh-client
- openssh-server
- valgrind
dist: trusty dist: trusty
sudo: false sudo: true
matrix: matrix:
fast_finish: true fast_finish: true
...@@ -56,7 +47,7 @@ matrix: ...@@ -56,7 +47,7 @@ matrix:
- env: COVERITY=1 - env: COVERITY=1
install: install:
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then ./script/install-deps-${TRAVIS_OS_NAME}.sh; fi - ./script/install-deps-${TRAVIS_OS_NAME}.sh
# Run the Build script and tests # Run the Build script and tests
script: script:
......
#!/bin/sh
set -x
echo "deb http://libgit2deps.edwardthomson.com trusty libgit2deps" | sudo tee -a /etc/apt/sources.list
sudo apt-key adv --keyserver pgp.mit.edu --recv 99131CD5
sudo apt-get update -qq
sudo apt-get install -y cmake curl libcurl3 libcurl3-gnutls libcurl4-gnutls-dev libssh2-1-dev openssh-client openssh-server valgrind
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment