Make testsiote compatible with php 7.2, 1st pass
[plcapi.git] / .travis.yml
index 9fcb4a6..c35c7c8 100644 (file)
@@ -1,8 +1,11 @@
+language: php
+
+# the current Travis VMs are based on Ubuntu Trusty. Alas, those do not have php 5.3 available. So we keep using Precise...
+dist: precise
+
 # NB: we need to use the Trusty images if we want to test on hhvm
 #dist: trusty
 
-language: php
-
 php:
   - 5.3
   - 5.4
@@ -10,6 +13,8 @@ php:
   - 5.6
   - 7.0
   - 7.1
+  - 7.2
+  # hhvm is not available any more on Precise images
   #- hhvm
 
 before_install:
@@ -24,7 +29,7 @@ install:
 
 before_script:
   # Disable xdebug. NB: this should NOT be done for hhvm...
-  - if [ $TRAVIS_PHP_VERSION != "hhvm" ]; then phpenv config-rm xdebug.ini; fi
+  - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then phpenv config-rm xdebug.ini; fi
 
 
   # Set up Apache and Privoxy instances inside the Travis VM and use them for testing against
@@ -33,6 +38,8 @@ before_script:
   - ./test/ci/travis/setup_privoxy.sh
 
 script:
+  # Travis currently compiles PHP with an oldish cURL/GnuTLS combination;
+  # to make the tests pass when Apache has a bogus SSL cert whe need the full set of options below
   php -d "include_path=.:./lib:./test" test/testsuite.php LOCALSERVER=localhost URI=/demo/server/server.php HTTPSSERVER=localhost HTTPSURI=/demo/server/server.php PROXY=localhost:8080 HTTPSVERIFYHOST=0 HTTPSIGNOREPEER=1 SSLVERSION=3
 
 after_failure: