Ricordisamoa has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/331987 )

Change subject: travis-ci: bypass Composer ssl on PHP 5.3.3
......................................................................

travis-ci: bypass Composer ssl on PHP 5.3.3

The PHP 5.3.3 builds provided by Travis-CI do not include SSL support.
This in turn causes modern versions of Composer to fail with default
configuration. When testing under PHP 5.3.3, configure Composer to use
non-tls connections.

Copied from the cdb repository.

Change-Id: I0d9e00e1dee9d228c4cd0a0f251ac68d36722216
---
M .travis.yml
1 file changed, 2 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/IPSet refs/changes/87/331987/1

diff --git a/.travis.yml b/.travis.yml
index f16c6c2..1aad8d1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,6 +9,8 @@
   - "7.1"
   - "hhvm"
 sudo: false
+before_install:
+  - if [ "$TRAVIS_PHP_VERSION" = "5.3.3" ]; then composer config disable-tls 
true; composer config secure-http false; fi
 install:
   - composer install
 script:

-- 
To view, visit https://gerrit.wikimedia.org/r/331987
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0d9e00e1dee9d228c4cd0a0f251ac68d36722216
Gerrit-PatchSet: 1
Gerrit-Project: IPSet
Gerrit-Branch: master
Gerrit-Owner: Ricordisamoa <ricordisa...@openmailbox.org>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to