X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=scripts%2Fgen_travis_yml.php;h=311a4cd000afa5edccef34ab7e1bdcf7349e6bdb;hp=4bb37b775a461b54e0e2787e97e312d7e0ca8f64;hb=b2be5b163e896bb9cbb3f28314551d0debf8408d;hpb=e4a99e4f0febd3de9511f17c0bc25da266ce63ce diff --git a/scripts/gen_travis_yml.php b/scripts/gen_travis_yml.php index 4bb37b7..311a4cd 100755 --- a/scripts/gen_travis_yml.php +++ b/scripts/gen_travis_yml.php @@ -17,14 +17,12 @@ env: $gen = include "./travis/pecl/gen-matrix.php"; $env = $gen([ - "PHP" => ["master"], + "PHP" => ["7.0", "master"], "enable_debug", "enable_maintainer_zts", "enable_json", "enable_hash" => ["yes"], "enable_iconv" => ["yes"], - "enable_phar" => ["yes"], - "enable_posix" => ["yes"] ]); foreach ($env as $e) { printf(" - %s\n", $e); @@ -34,13 +32,21 @@ foreach ($env as $e) { before_script: - make -f travis/pecl/Makefile php - - make -f travis/pecl/Makefile pharext/raphf-master pharext/propro-master + - 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 after_script: - test -e tests/helper/server.log && cat tests/helper/server.log sudo: false +notifications: + webhooks: + urls: + - https://webhooks.gitter.im/e/28d35158ac7e385bd14d + on_success: change + on_failure: always + on_start: never