diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-06-14 09:11:28 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-06-14 09:11:28 +0200 |
commit | c8ac7e37917bb33916af479ddc67f4a89bc1e100 (patch) | |
tree | 7fa59603fa30959b487f68d3b6aaff8cfdd286cd | |
parent | 96c71aa0c426b63c545d60ff8d3f682647495162 (diff) | |
download | weechat-c8ac7e37917bb33916af479ddc67f4a89bc1e100.zip |
core: replace HTTPS by HTTP for the download of libcpputest (Travis CI)
With HTTPS, it often fails with no reason
(error: "curl: (28) SSL connection timeout").
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index da61f4b7e..3ec0902f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,7 @@ before_script: - echo 'APT::Install-Recommends "false";' | sudo tee -a /etc/apt/apt.conf - sudo apt-get update -qq - sudo apt-get -y install devscripts equivs python-pip libenchant-dev autopoint asciidoc source-highlight xsltproc docbook-xsl docbook-xml cmake pkg-config libncursesw5-dev gem2deb libperl-dev python-dev python3-dev libaspell-dev liblua5.1-0-dev tcl8.5-dev guile-2.0-dev libv8-dev libcurl4-gnutls-dev libgcrypt11-dev libgnutls-dev zlib1g-dev curl - - curl -OL https://weechat.org/files/tests/ubuntu/precise/amd64/libcpputest-dev_3.4-3_amd64.deb + - curl -OL http://weechat.org/files/tests/ubuntu/precise/amd64/libcpputest-dev_3.4-3_amd64.deb - sudo dpkg -i libcpputest-dev_3.4-3_amd64.deb - sudo pip install msgcheck pylint |