X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=scripts%2Fgen_travis_yml.php;h=fbfae508be3c1545b2ee7fba4487ac8a51308256;hp=f336d43fa98481f51d4da709c8159e7d185ba1b7;hb=359e0071f9e2fdc32b2cdc06716197d9c73de759;hpb=ca640a79890fcc7353a0977c08185898daf2aea7 diff --git a/scripts/gen_travis_yml.php b/scripts/gen_travis_yml.php index f336d43..fbfae50 100755 --- a/scripts/gen_travis_yml.php +++ b/scripts/gen_travis_yml.php @@ -17,30 +17,40 @@ env: $gen = include "./travis/pecl/gen-matrix.php"; $env = $gen([ - "PHP" => ["master"], + "PHP" => ["7.0", "master"], "enable_debug", "enable_maintainer_zts", "enable_json", "enable_hash" => ["yes"], "enable_iconv" => ["yes"], - "enable_phar" => ["yes"], - "enable_posix" => ["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 pharext/raphf-2.0.0-dev pharext/propro-2.0.0-dev + - 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: - - make -f travis/pecl/Makefile ext PECL=http - make -f travis/pecl/Makefile test 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: + webhooks: + urls: + - https://webhooks.gitter.im/e/28d35158ac7e385bd14d + on_success: change + on_failure: always + on_start: never