From: Michael Wallner Date: Tue, 12 Jan 2021 16:54:45 +0000 (+0100) Subject: rm gen_travis_yml.php X-Git-Tag: v4.0.0~17 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=85ef852aae2aaa877e901f5e2b09f32d9cc6381a rm gen_travis_yml.php --- diff --git a/scripts/gen_travis_yml.php b/scripts/gen_travis_yml.php deleted file mode 100755 index 7a0c273..0000000 --- a/scripts/gen_travis_yml.php +++ /dev/null @@ -1,119 +0,0 @@ -#!/usr/bin/env php -# autogenerated file; do not edit -language: c - -addons: - apt: - packages: - - php-cli - - php-pear - - libcurl4-openssl-dev - - libidn11-dev - - libidn2-0-dev - - libicu-dev - - libevent-dev - - libbrotli-dev - -cache: - apt: true - directories: - - $HOME/cache -before_cache: - - find $HOME/cache -name '*.gcda' -o -name '*.gcno' -delete - -env: - ["master"], - "enable_debug" => "yes", - "enable_zts" => "yes", - "enable_iconv" => "yes", -], [ -// everything disabled for current - "PHP" => $cur, - "with_http_libicu_dir" => "no", - "with_http_libidn_dir" => "no", - "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 debug/zts - "PHP" => $cur, -// "PECLs" => "event", // for tests/client029.phpt -// "enable_sockets" => "yes", // needed by pecl/event - "enable_debug", - "enable_zts", - "enable_iconv" => "yes", -], [ -// 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_iconv" => "yes", - [ - "with_http_libicu_dir", - "with_http_libidn_dir", - "with_http_libidn2_dir", - ], -]); -foreach ($env as $grp) { - foreach ($grp as $e) { - printf(" - %s\n", $e); - } -} -?> - -matrix: - fast_finish: true - allow_failures: - - -install: - - | - if test "$PHP" = master; then \ - make -f travis/pecl/Makefile reconf; \ - 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=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 - - make -f travis/pecl/Makefile test - -after_script: - - make -f travis/pecl/Makefile cppcheck -after_failure: - - test -e tests/helper/server.log && cat tests/helper/server.log -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