X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=scripts%2Fgen_travis_yml.php;h=f393bbcd68322d223a09e39b33f29ee600b6a55e;hp=b1e4135f9adc592ca5fdb1459d03ab9b163881c6;hb=594dfcf5689232682c9705f364ad7be2853b3a9e;hpb=b44bd8e1efb2518380b95220818d8643c7cfd845 diff --git a/scripts/gen_travis_yml.php b/scripts/gen_travis_yml.php index b1e4135..f393bbc 100755 --- a/scripts/gen_travis_yml.php +++ b/scripts/gen_travis_yml.php @@ -1,38 +1,41 @@ #!/usr/bin/env php # autogenerated file; do not edit language: c -sudo: required -dist: trusty addons: apt: packages: - - php5-cli + - php-cli - php-pear - libcurl4-openssl-dev - libidn11-dev - libidn2-0-dev - libicu-dev - libevent-dev + - libbrotli-dev -compiler: - - gcc - - clang +dist: xenial + +cache: + apt: true + directories: + - $HOME/cache +before_cache: + - find $HOME/cache -name '*.gcda' -o -name '*.gcno' -delete env: ["7.0", "7.1", "master"], + "PHP" => ["7.0", "7.1", "7.2", "7.4", "master"], "enable_debug" => "yes", "enable_maintainer_zts" => "yes", "enable_json" => "yes", "enable_hash" => "yes", "enable_iconv" => "yes", - "with_http_libbrotli_dir" => "/home/travis/brotli" ], [ // everything disabled for current "PHP" => $cur, @@ -41,24 +44,27 @@ $env = $gen([ "with_http_libidn2_dir" => "no", "with_http_libcurl_dir" => "no", "with_http_libevent_dir" => "no", + "with_http_libbrotli_dir" => "no", ], [ -// everything enabled for current, switching on debug/zts +// everything enabled for current, switching debug/zts "PHP" => $cur, + "PECLs" => "event", // for tests/client029.phpt + "enable_sockets" => "yes", // needed by pecl/event "enable_debug", "enable_maintainer_zts", "enable_json" => "yes", "enable_hash" => "yes", "enable_iconv" => "yes", - "with_http_libbrotli_dir" => "/home/travis/brotli", ], [ // once everything enabled for current, with coverage "CFLAGS" => "'-O0 -g --coverage'", "CXXFLAGS" => "'-O0 -g --coverage'", "PHP" => $cur, + "PECLs" => "event", // for tests/client029.phpt + "enable_sockets" => "yes", // needed by pecl/event "enable_json" => "yes", "enable_hash" => "yes", "enable_iconv" => "yes", - "with_http_libbrotli_dir" => "/home/travis/brotli", [ "with_http_libicu_dir", "with_http_libidn_dir", @@ -70,20 +76,45 @@ foreach ($env as $grp) { printf(" - %s\n", $e); } } +?> +matrix: + fast_finish: true + allow_failures: + -before_script: - - ./travis/brotli.sh - - make -f travis/pecl/Makefile php +install: + - | + if test "$PHP" = master; then \ + make -f travis/pecl/Makefile reconf; \ + make -f travis/pecl/Makefile pecl-rm pecl-clean PECL=ext-raphf.git:raphf:master; \ + make -f travis/pecl/Makefile pecl-rm pecl-clean PECL=ext-propro.git:propro:master; \ + fi + - make -f travis/pecl/Makefile php || make -f travis/pecl/Makefile clean php - make -f travis/pecl/Makefile pecl PECL=ext-raphf.git:raphf:master - make -f travis/pecl/Makefile pecl PECL=ext-propro.git:propro:master - - make -f travis/pecl/Makefile ext PECL=http + - | + if test -n "$PECLs"; then \ + IFS=$','; \ + for pecl in $PECLs; do \ + make -f travis/pecl/Makefile pecl PECL=$pecl; \ + done; \ + unset IFS; \ + fi script: + - make -f travis/pecl/Makefile ext PECL=http - make -f travis/pecl/Makefile test - - make -f travis/pecl/Makefile cppcheck CPPCHECK_EXITCODE=0 +after_script: + - make -f travis/pecl/Makefile cppcheck after_failure: - test -e tests/helper/server.log && cat tests/helper/server.log after_success: