X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=scripts%2Fgen_travis_yml.php;h=7a0c27364d15cbce59a46ae6f515385eef90aba2;hb=7a0dee8cc0dc7fc165d9c4f39a070bf3c32ce756;hp=bcbd34892f06c94ed8691ae7d70fa16173d6ecf9;hpb=3896b080bb717c21d737bed13b8b20cf627a9ce3;p=m6w6%2Fext-http diff --git a/scripts/gen_travis_yml.php b/scripts/gen_travis_yml.php index bcbd348..7a0c273 100755 --- a/scripts/gen_travis_yml.php +++ b/scripts/gen_travis_yml.php @@ -14,12 +14,6 @@ addons: - libevent-dev - libbrotli-dev -dist: xenial - -compiler: - - gcc - - clang - cache: apt: true directories: @@ -31,14 +25,12 @@ env: ["7.0", "7.1", "7.2", "master"], + "PHP" => ["master"], "enable_debug" => "yes", - "enable_maintainer_zts" => "yes", - "enable_json" => "yes", - "enable_hash" => "yes", + "enable_zts" => "yes", "enable_iconv" => "yes", ], [ // everything disabled for current @@ -50,20 +42,20 @@ $env = $gen([ "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_zts", "enable_iconv" => "yes", ], [ // once everything enabled for current, with coverage "CFLAGS" => "'-O0 -g --coverage'", "CXXFLAGS" => "'-O0 -g --coverage'", "PHP" => $cur, - "enable_json" => "yes", - "enable_hash" => "yes", +// "PECLs" => "event", // for tests/client029.phpt +// "enable_sockets" => "yes", // needed by pecl/event "enable_iconv" => "yes", [ "with_http_libicu_dir", @@ -83,7 +75,7 @@ matrix: allow_failures: install: - - ./travis/brotli.sh v1.0.2 - | 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; \ + make -f travis/pecl/Makefile pecl-rm pecl-clean PECL=m6w6/ext-raphf.git:raphf: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 pecl PECL=m6w6/ext-raphf.git:raphf:master + - | + 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