X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=scripts%2Fgen_travis_yml.php;h=2f32a7458555972fa7b57c148e71167bbb2ad5b0;hp=8025713550681c97cc2fbe5fd182a09e76a2ba23;hb=c37e911f6a277f735cf820ebf71d4254ddcb9812;hpb=6fd3b8fbeda65fcf3f5652a010cb3f396a382767 diff --git a/scripts/gen_travis_yml.php b/scripts/gen_travis_yml.php index 8025713..2f32a74 100755 --- a/scripts/gen_travis_yml.php +++ b/scripts/gen_travis_yml.php @@ -5,17 +5,16 @@ language: c 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 @@ -37,7 +36,6 @@ $env = $gen([ "enable_json" => "yes", "enable_hash" => "yes", "enable_iconv" => "yes", - "with_http_libbrotli_dir" => "/home/travis/brotli" ], [ // everything disabled for current "PHP" => $cur, @@ -46,15 +44,15 @@ $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, "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'", @@ -63,40 +61,32 @@ $env = $gen([ "enable_json" => "yes", "enable_hash" => "yes", "enable_iconv" => "yes", - "with_http_libbrotli_dir" => "/home/travis/brotli", [ "with_http_libicu_dir", "with_http_libidn_dir", "with_http_libidn2_dir", ], ]); -$allow_failures = []; foreach ($env as $grp) { foreach ($grp as $e) { - if (!strncmp($e, "PHP=master", strlen("PHP=master"))) { - $allow_failures[] = $e; - } printf(" - %s\n", $e); } } ?> matrix: - include: - - os: linux - dist: trusty - - os: linux - dist: xenial fast_finish: true allow_failures: install: - - ./travis/brotli.sh v1.0.2 - | if test "$PHP" = master; then \ make -f travis/pecl/Makefile reconf; \