rm gen_travis_yml.php
authorMichael Wallner <mike@php.net>
Tue, 12 Jan 2021 16:54:45 +0000 (17:54 +0100)
committerMichael Wallner <mike@php.net>
Tue, 12 Jan 2021 16:54:45 +0000 (17:54 +0100)
scripts/gen_travis_yml.php [deleted file]

diff --git a/scripts/gen_travis_yml.php b/scripts/gen_travis_yml.php
deleted file mode 100755 (executable)
index 7a0c273..0000000
+++ /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:
-<?php
-
-$gen = include "./travis/pecl/gen-matrix.php";
-$cur = "8.0";
-$env = $gen([
-// most useful for all additional versions except current
-       "PHP" => ["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:
-<?php
-$allow_failures = array_merge( ... array_map(function($a) {
-       return preg_grep('/^PHP=(master) /', $a);
-}, $env));
-foreach ($allow_failures as $e) {
-       printf("  - env: %s\n", $e);
-}
-?>
-
-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