X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=gen_travis_yml.php;h=a5b44201cbea9336e5d31a15b50c3d5c6594f5b5;hp=87b025d4372db6c623117bf56f371848be47f058;hb=11075db860470f36eafe93257972e5f7db9632fa;hpb=f998df50166162592fd71a68f24d05e712e157e3 diff --git a/gen_travis_yml.php b/gen_travis_yml.php index 87b025d..a5b4420 100755 --- a/gen_travis_yml.php +++ b/gen_travis_yml.php @@ -8,6 +8,7 @@ addons: packages: - php5-cli - php-pear + - valgrind env: global: @@ -17,11 +18,10 @@ env: $gen = include "./travis/pecl/gen-matrix.php"; $env = $gen([ - "PHP" => ["5.4", "5.5", "5.6"], + "PHP" => ["7.0", "7.1", "7.2", "master"], "enable_debug", "enable_maintainer_zts", "enable_json", - "enable_hash" => ["yes"], ]); foreach ($env as $e) { printf(" - %s\n", $e); @@ -31,11 +31,11 @@ foreach ($env as $e) { before_script: - make -f travis/pecl/Makefile php - - make -f travis/pecl/Makefile pecl PECL=raphf + - make -f travis/pecl/Makefile pecl PECL=raphf:raphf:2.0.0 + - make -f travis/pecl/Makefile ext PECL=pq - psql -U postgres -c "CREATE DATABASE test" script: - - make -f travis/pecl/Makefile ext PECL=pq - make -f travis/pecl/Makefile test sudo: false