2f32a7458555972fa7b57c148e71167bbb2ad5b0
[m6w6/ext-http] / scripts / gen_travis_yml.php
1 #!/usr/bin/env php
2 # autogenerated file; do not edit
3 language: c
4
5 addons:
6 apt:
7 packages:
8 - php-cli
9 - php-pear
10 - libcurl4-openssl-dev
11 - libidn11-dev
12 - libidn2-0-dev
13 - libicu-dev
14 - libevent-dev
15 - libbrotli-dev
16
17 dist: xenial
18
19 cache:
20 apt: true
21 directories:
22 - $HOME/cache
23 before_cache:
24 - find $HOME/cache -name '*.gcda' -o -name '*.gcno' -delete
25
26 env:
27 <?php
28
29 $gen = include "./travis/pecl/gen-matrix.php";
30 $cur = "7.3";
31 $env = $gen([
32 // most useful for all additional versions except current
33 "PHP" => ["7.0", "7.1", "7.2", "master"],
34 "enable_debug" => "yes",
35 "enable_maintainer_zts" => "yes",
36 "enable_json" => "yes",
37 "enable_hash" => "yes",
38 "enable_iconv" => "yes",
39 ], [
40 // everything disabled for current
41 "PHP" => $cur,
42 "with_http_libicu_dir" => "no",
43 "with_http_libidn_dir" => "no",
44 "with_http_libidn2_dir" => "no",
45 "with_http_libcurl_dir" => "no",
46 "with_http_libevent_dir" => "no",
47 "with_http_libbrotli_dir" => "no",
48 ], [
49 // everything enabled for current, switching debug/zts
50 "PHP" => $cur,
51 "enable_debug",
52 "enable_maintainer_zts",
53 "enable_json" => "yes",
54 "enable_hash" => "yes",
55 "enable_iconv" => "yes",
56 ], [
57 // once everything enabled for current, with coverage
58 "CFLAGS" => "'-O0 -g --coverage'",
59 "CXXFLAGS" => "'-O0 -g --coverage'",
60 "PHP" => $cur,
61 "enable_json" => "yes",
62 "enable_hash" => "yes",
63 "enable_iconv" => "yes",
64 [
65 "with_http_libicu_dir",
66 "with_http_libidn_dir",
67 "with_http_libidn2_dir",
68 ],
69 ]);
70 foreach ($env as $grp) {
71 foreach ($grp as $e) {
72 printf(" - %s\n", $e);
73 }
74 }
75 ?>
76
77 matrix:
78 fast_finish: true
79 allow_failures:
80 <?php
81 $allow_failures = array_merge( ... array_map(function($a) {
82 return preg_grep('/^PHP=master /', $a);
83 }, $env));
84 foreach ($allow_failures as $e) {
85 printf(" - env: %s\n", $e);
86 }
87 ?>
88
89 install:
90 - |
91 if test "$PHP" = master; then \
92 make -f travis/pecl/Makefile reconf; \
93 make -f travis/pecl/Makefile pecl-rm pecl-clean PECL=ext-raphf.git:raphf:master; \
94 make -f travis/pecl/Makefile pecl-rm pecl-clean PECL=ext-propro.git:propro:master; \
95 fi
96 - make -f travis/pecl/Makefile php || make -f travis/pecl/Makefile clean php
97 - make -f travis/pecl/Makefile pecl PECL=ext-raphf.git:raphf:master
98 - make -f travis/pecl/Makefile pecl PECL=ext-propro.git:propro:master
99
100 script:
101 - make -f travis/pecl/Makefile ext PECL=http
102 - make -f travis/pecl/Makefile test
103
104 after_script:
105 - make -f travis/pecl/Makefile cppcheck
106 after_failure:
107 - test -e tests/helper/server.log && cat tests/helper/server.log
108 after_success:
109 - test -n "$CFLAGS" && cd src/.libs && bash <(curl -s https://codecov.io/bash) -X xcode -X coveragepy
110
111 notifications:
112 webhooks:
113 urls:
114 - https://webhooks.gitter.im/e/28d35158ac7e385bd14d
115 on_success: change
116 on_failure: always
117 on_start: never