Commit | Line | Data |
d70070c9 |
1 | # Some overall notes on how this works |
2 | # |
3 | # * We smoke using the system provided latest, and custom built "oddball perls" |
4 | # The reason for not having a blanket matrix is to conserve travis resources |
5 | # as a full DBIC depchain isn't cheap |
6 | # |
7 | # * Minimum perl officially supported by DBIC is 5.8.3. This *includes* the |
8 | # basic depchain. On failure either attempt to fix it or bring it to the |
9 | # attention of ribasushi. *DO NOT* disable 5.8 testing - it is here for a |
10 | # reason |
11 | # |
6d2b5c14 |
12 | # * The matrix is built from two main modes - CLEANTEST = [true|false]. |
13 | # - In the first case we test with minimal deps available, and skip everything |
14 | # listed in DBIC::OptDesps. The modules are installed with classic CPAN |
15 | # invocations and are *fully tested*. In other words we simulate what would |
16 | # happen if a user tried to install on a just-compiled virgin perl |
17 | # - Without CLEANTEST we bring the armada of RDBMS and install the maximum |
18 | # possible set of deps *without testing them*. This ensures we stay within |
19 | # a reasonable build-time and still run as many of our tests as possible |
d70070c9 |
20 | # |
6d2b5c14 |
21 | # * The perl builds and the DBIC tests run under NUMTHREADS number of threads. |
22 | # The testing of dependencies under CLEANTEST runs single-threaded, at least |
23 | # until we fix our entire dep-chain to safely pass under -j |
d70070c9 |
24 | # |
25 | # * The way .travis.yml is fed to the command controller is idiotic - it |
26 | # makes using multiline `bash -c` statements impossible. Therefore to |
27 | # aid readability (our travis logic is rather complex), the bulk of |
b58ecb01 |
28 | # functionality is moved to scripts. More about the problem (and the |
d70070c9 |
29 | # WONTFIX "explanation") here: https://github.com/travis-ci/travis-ci/issues/497 |
30 | # |
afeb40d2 |
31 | # the entire run times out after 50 minutes, or after 5 minutes without |
32 | # console output |
d70070c9 |
33 | |
d0b79c51 |
34 | # |
a0acdea0 |
35 | # Smoke all branches except for blocked* and wip/* |
d0b79c51 |
36 | # |
a0acdea0 |
37 | # Additionally master does not smoke with bleadperl |
38 | # ( implemented in maint/travis-ci_scripts/10_before_install.bash ) |
d0b79c51 |
39 | # |
d70070c9 |
40 | branches: |
a0acdea0 |
41 | except: |
42 | - /^wip\// |
43 | - /^blocked/ |
d70070c9 |
44 | |
45 | notifications: |
46 | irc: |
47 | channels: |
48 | - "irc.perl.org#dbic-smoke" |
49 | template: |
50 | - "%{branch}#%{build_number} by %{author}: %{message} (%{build_url})" |
51 | on_success: change |
52 | on_failure: always |
53 | use_notice: true |
54 | |
55 | email: |
2af1c37d |
56 | recipients: |
57 | - ribasushi@cpan.org |
58 | # Temporary - if it proves to be too noisy, we'll shut it off |
ee896495 |
59 | #- dbix-class-devel@lists.scsys.co.uk |
2af1c37d |
60 | on_success: change |
4ac234b5 |
61 | on_failure: always |
d70070c9 |
62 | |
003e97c5 |
63 | # FIXME - This stuff is not yet available for free OSS accounts, sadpanda |
64 | # First paragrah on http://about.travis-ci.org/docs/user/caching/ |
65 | #cache: |
66 | # apt: true |
67 | # directories: |
68 | # - /var/cache/apt/archives |
69 | |
915876d7 |
70 | language: perl |
d70070c9 |
71 | |
915876d7 |
72 | perl: |
e52712a8 |
73 | - "5.8" |
4ae45d69 |
74 | - "5.20-extras" |
915876d7 |
75 | |
d70070c9 |
76 | env: |
77 | - CLEANTEST=false |
78 | - CLEANTEST=true |
dea888a6 |
79 | |
d70070c9 |
80 | matrix: |
070b8a0c |
81 | fast_finish: true |
d70070c9 |
82 | include: |
e52712a8 |
83 | # CLEANTEST of minimum supported with non-tracing poisoning |
84 | - perl: 5.8.3_nt_mb |
d70070c9 |
85 | env: |
ced296a8 |
86 | - CLEANTEST=true |
e52712a8 |
87 | - DBIC_TRACE_PROFILE=console_monochrome |
88 | - BREWVER=5.8.3 |
89 | - BREWOPTS="-Dusemorebits" |
915876d7 |
90 | |
e52712a8 |
91 | # Full Test of minimum supported without threads with non-tracing poisoning |
92 | - perl: 5.8.3_nt |
6d2b5c14 |
93 | env: |
e52712a8 |
94 | - CLEANTEST=false |
95 | - POISON_ENV=true |
96 | - BREWVER=5.8.3 |
6d2b5c14 |
97 | |
e52712a8 |
98 | # Full Test of minimum supported with threads with non-tracing poisoning |
99 | - perl: 5.8.5_thr |
100 | env: |
101 | - CLEANTEST=false |
102 | - POISON_ENV=true |
103 | - DBIC_TRACE_PROFILE=console |
104 | - BREWVER=5.8.5 |
105 | - BREWOPTS="-Duseithreads" |
106 | |
107 | # CLEANTEST of solaris-like perl with non-tracing poisoning |
108 | - perl: 5.8.4_nt |
d70070c9 |
109 | env: |
110 | - CLEANTEST=true |
e52712a8 |
111 | - POISON_ENV=true |
112 | - DBIC_TRACE_PROFILE=console |
113 | - BREWVER=5.8.4 |
d70070c9 |
114 | |
e52712a8 |
115 | # CLEANTEST: this particular perl is quite widespread |
116 | - perl: 5.8.8_thr_mb |
d70070c9 |
117 | env: |
118 | - CLEANTEST=true |
e52712a8 |
119 | - BREWVER=5.8.8 |
120 | - BREWOPTS="-Duseithreads -Dusemorebits" |
d70070c9 |
121 | |
e52712a8 |
122 | # CLEANTEST: this is the perl suse ships |
123 | - perl: 5.10.0_thr_dbg |
ced296a8 |
124 | env: |
e52712a8 |
125 | - CLEANTEST=true |
126 | - BREWVER=5.10.0 |
127 | - BREWOPTS="-DDEBUGGING -Duseithreads" |
ced296a8 |
128 | |
e52712a8 |
129 | # CLEANTEST: this one is in a number of debian-based LTS (test a sane CPAN.pm) |
130 | - perl: 5.14.2_thr_mb |
ced296a8 |
131 | env: |
e52712a8 |
132 | - CLEANTEST=true |
133 | - BREWVER=5.14.2 |
134 | - BREWOPTS="-Duseithreads -Dusemorebits" |
ced296a8 |
135 | |
136 | ### |
eed5492f |
137 | # some permutations of tracing and envvar poisoning |
ced296a8 |
138 | |
e52712a8 |
139 | - perl: 5.12.3_thr |
7c1a09fc |
140 | env: |
e52712a8 |
141 | - CLEANTEST=true |
7c1a09fc |
142 | - DBIC_TRACE=1 |
e52712a8 |
143 | - DBIC_MULTICREATE_DEBUG=1 |
144 | - DBIC_STORAGE_RETRY_DEBUG=1 |
eed5492f |
145 | - POISON_ENV=true |
7c1a09fc |
146 | - DBIC_TRACE_PROFILE=console |
e52712a8 |
147 | - BREWVER=5.12.3 |
148 | - BREWOPTS="-Duseithreads" |
eba59b7e |
149 | |
e52712a8 |
150 | - perl: 5.16.3_thr_mb |
eba59b7e |
151 | env: |
e52712a8 |
152 | - CLEANTEST=false |
eba59b7e |
153 | - DBIC_TRACE=1 |
e52712a8 |
154 | - POISON_ENV=true |
155 | - BREWVER=5.16.3 |
156 | - BREWOPTS="-Duseithreads -Dusemorebits" |
eba59b7e |
157 | |
4ae45d69 |
158 | - perl: 5.18-extras |
eba59b7e |
159 | env: |
160 | - CLEANTEST=false |
161 | - DBIC_TRACE=1 |
e52712a8 |
162 | - POISON_ENV=true |
eba59b7e |
163 | - DBIC_TRACE_PROFILE=console_monochrome |
164 | |
261141ce |
165 | ### |
166 | # Start of the allow_failures block |
167 | |
4841171c |
168 | # threaded oldest possible with blead CPAN with non-tracing poisoning |
169 | - perl: devcpan_5.8.1_thr_mb |
170 | env: |
171 | - CLEANTEST=true |
172 | - DEVREL_DEPS=true |
173 | - POISON_ENV=true |
174 | - BREWVER=5.8.1 |
175 | - BREWOPTS="-Duseithreads -Dusemorebits" |
176 | |
e52712a8 |
177 | # 5.8.4 threaded with blead CPAN with non-tracing poisoning |
178 | - perl: devcpan_5.8.4_thr |
dd5de10a |
179 | env: |
180 | - CLEANTEST=true |
dd5de10a |
181 | - DEVREL_DEPS=true |
e52712a8 |
182 | - POISON_ENV=true |
183 | - BREWVER=5.8.4 |
184 | - BREWOPTS="-Duseithreads" |
dd5de10a |
185 | |
e6b373aa |
186 | # 5.10.0 threaded with blead CPAN |
187 | - perl: devcpan_5.10.0_thr_mb |
188 | env: |
189 | - CLEANTEST=true |
e6b373aa |
190 | - DEVREL_DEPS=true |
e52712a8 |
191 | - BREWVER=5.10.0 |
192 | - BREWOPTS="-Duseithreads -Dusemorebits" |
e6b373aa |
193 | |
e52712a8 |
194 | # 5.12.1 with blead CPAN |
195 | - perl: devcpan_5.12.1_thr |
e6b373aa |
196 | env: |
197 | - CLEANTEST=true |
2f51deb1 |
198 | - DEVREL_DEPS=true |
e52712a8 |
199 | - BREWVER=5.12.1 |
200 | - BREWOPTS="-Duseithreads" |
2f51deb1 |
201 | |
e52712a8 |
202 | # bleadperl with stock CPAN, full depchain test with non-tracing poisoning |
c47de5de |
203 | - perl: bleadperl |
261141ce |
204 | env: |
c47de5de |
205 | - CLEANTEST=true |
e52712a8 |
206 | - POISON_ENV=true |
261141ce |
207 | - BREWVER=blead |
208 | |
e52712a8 |
209 | # bleadperl with blead CPAN with non-tracing poisoning |
2f51deb1 |
210 | - perl: devcpan_bleadperl_thr_mb |
211 | env: |
212 | - CLEANTEST=false |
2f51deb1 |
213 | - DEVREL_DEPS=true |
e52712a8 |
214 | - POISON_ENV=true |
215 | - BREWVER=blead |
216 | - BREWOPTS="-Duseithreads -Dusemorebits" |
2f51deb1 |
217 | |
261141ce |
218 | |
219 | # which ones of the above can fail |
220 | allow_failures: |
f2f65c95 |
221 | |
f207111d |
222 | # these run with various dev snapshots - allowed to fail |
4841171c |
223 | - perl: devcpan_5.8.1_thr_mb |
e52712a8 |
224 | - perl: devcpan_5.8.4_thr |
dd5de10a |
225 | - perl: devcpan_5.10.0_thr_mb |
e52712a8 |
226 | - perl: devcpan_5.12.1_thr |
c47de5de |
227 | - perl: bleadperl |
2f51deb1 |
228 | - perl: devcpan_bleadperl_thr_mb |
261141ce |
229 | |
230 | |
afeb40d2 |
231 | ### |
232 | ### For the following two phases -e is *set* |
233 | ### |
b58ecb01 |
234 | |
d70070c9 |
235 | before_install: |
2b32a020 |
236 | # common functions for all run phases below |
afeb40d2 |
237 | # |
238 | # this is an exporter - sourcing it is crucial |
239 | # among other things it also sets -e |
240 | # |
2b32a020 |
241 | - source maint/travis-ci_scripts/common.bash |
242 | |
b58ecb01 |
243 | # Sets global envvars, downloads/configures debs based on CLEANTEST |
244 | # Sets extra DBICTEST_* envvars |
245 | # |
afeb40d2 |
246 | # this is an exporter - sourcing it is crucial |
247 | # |
b58ecb01 |
248 | - source maint/travis-ci_scripts/10_before_install.bash |
d70070c9 |
249 | |
250 | install: |
251 | # Build and switch to a custom perl if requested |
b58ecb01 |
252 | # Configure the perl env, preinstall some generic toolchain parts |
afeb40d2 |
253 | # Possibly poison the environment |
254 | # |
255 | # this is an exporter - sourcing it is crucial |
b58ecb01 |
256 | # |
b58ecb01 |
257 | - source maint/travis-ci_scripts/20_install.bash |
d70070c9 |
258 | |
afeb40d2 |
259 | ### |
260 | ### From this point on -e is *unset*, rely on travis' error handling |
261 | ### |
262 | - set +e |
263 | |
b58ecb01 |
264 | before_script: |
265 | # Preinstall/install deps based on envvars/CLEANTEST |
266 | # |
ac4e80df |
267 | # need to invoke the after_failure script manually |
268 | # because 'after_failure' runs only after 'script' fails |
269 | # |
270 | - maint/getstatus maint/travis-ci_scripts/30_before_script.bash || ( maint/travis-ci_scripts/50_after_failure.bash && /bin/false ) |
c299fd65 |
271 | |
b58ecb01 |
272 | script: |
273 | # Run actual tests |
274 | # |
ac4e80df |
275 | - maint/getstatus maint/travis-ci_scripts/40_script.bash |
c87d30a7 |
276 | |
277 | after_success: |
b58ecb01 |
278 | # Check if we can assemble a dist properly if not in CLEANTEST |
279 | # |
ac4e80df |
280 | - maint/getstatus maint/travis-ci_scripts/50_after_success.bash |
b58ecb01 |
281 | |
282 | after_failure: |
ac4e80df |
283 | # Final sysinfo printout on fail |
b58ecb01 |
284 | # |
ac4e80df |
285 | - maint/getstatus maint/travis-ci_scripts/50_after_failure.bash |
b58ecb01 |
286 | |
287 | after_script: |
288 | # No tasks yet |
289 | # |
ac4e80df |
290 | #- maint/getstatus maint/travis-ci_scripts/60_after_script.bash |