Skip to content

Commit

Permalink
Update curl to latest version when running tests on travis. (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
OGKevin committed Apr 6, 2018
1 parent 09972f7 commit 8169b19
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,16 @@ php:
- 7.1
- 7.2
install: composer install
before_script:
- apt-get build-dep curl
- cd /tmp
- wget https://curl.haxx.se/download/curl-7.59.0.tar.bz2
- tar -xvjf curl-7.59.0.tar.bz2
- cd curl-7.59.0
- ./configure
- make
- make install
- ldconfig
- curl --version

script: vendor/bin/paratest -p 2

0 comments on commit 8169b19

Please sign in to comment.