X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=scripts%2Fgen_travis_yml.php;h=2a80a3734ba91d29a987f8a790711269bfe6ec16;hp=89ab0b208b9b9e0883f271508cf419e7d93080da;hb=b4d1d8eb6c4d400c1b5f3584fb491dfd4fcfff9c;hpb=bdd6edb59194cda9e5fcb393c48ab4230fceb32a diff --git a/scripts/gen_travis_yml.php b/scripts/gen_travis_yml.php index 89ab0b2..2a80a37 100755 --- a/scripts/gen_travis_yml.php +++ b/scripts/gen_travis_yml.php @@ -1,6 +1,7 @@ #!/usr/bin/env php # autogenerated file; do not edit language: c +sudo: false addons: apt: @@ -17,29 +18,40 @@ env: $gen = include "./travis/pecl/gen-matrix.php"; $env = $gen([ - "PHP" => ["5.4", "5.5", "5.6"], + "PHP" => ["7.0", "7.1", "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 -g --coverage" CXXFLAGS="-O0 -g --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 - - make -f travis/pecl/Makefile pecl PECL=propro + - 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 + - make -f travis/pecl/Makefile cppcheck -after_script: +after_failure: - test -e tests/helper/server.log && cat tests/helper/server.log - -sudo: false +after_success: + - test -n "$CFLAGS" && cd src/.libs && bash <(curl -s https://codecov.io/bash) -X xcode -X coveragepy + +notifications: + webhooks: + urls: + - https://webhooks.gitter.im/e/28d35158ac7e385bd14d + on_success: change + on_failure: always + on_start: never