codecov
[m6w6/ext-http] / scripts / gen_travis_yml.php
index 0bbda368adc8244a47742d3c123cf63f0da33175..fbfae508be3c1545b2ee7fba4487ac8a51308256 100755 (executable)
@@ -17,23 +17,25 @@ env:
 
 $gen = include "./travis/pecl/gen-matrix.php";
 $env = $gen([
-       "PHP" => ["5.3", "5.4", "5.5", "5.6"],
+       "PHP" => ["7.0", "master"],
        "enable_debug",
        "enable_maintainer_zts",
        "enable_json",
        "enable_hash" => ["yes"],
-       "enable_iconv" => ["yes"]
+       "enable_iconv" => ["yes"],
 ]);
 foreach ($env as $e) {
        printf(" - %s\n", $e);
 }
 
 ?>
+# once with gcov
+ - CFLAGS="-O0 -fprofile-arcs -ftest-coverage" PHP=master enable_json=yes enable_hash=yes enable_iconv=yes 
 
 before_script:
  - make -f travis/pecl/Makefile php
- - make -f travis/pecl/Makefile pecl PECL=raphf:raphf:1.1.1
- - make -f travis/pecl/Makefile pecl PECL=propro:propro:1.0.2
+ - make -f travis/pecl/Makefile pecl PECL=raphf:raphf:2.0.0
+ - make -f travis/pecl/Makefile pecl PECL=propro:propro:2.0.1
  - make -f travis/pecl/Makefile ext PECL=http
 
 script:
@@ -41,6 +43,8 @@ script:
 
 after_script:
  - test -e tests/helper/server.log && cat tests/helper/server.log
+after_success:
+ - test -n "$CFLAGS" && bash <(curl -s https://codecov.io/bash)
 
 sudo: false
 notifications: