Add Schmorp's "stable perl" fork to the smoke rosters
[dbsrgits/DBIx-Class.git] / .travis.yml
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 #
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
20 #
21 # * The perl builds and the DBIC tests run under VCPU_USE 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
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
28 # functionality is moved to scripts. More about the problem (and the
29 # WONTFIX "explanation") here: https://github.com/travis-ci/travis-ci/issues/497
30 #
31 # the entire run times out after 50 minutes, or after 5 minutes without
32 # console output
33
34 #
35 # Smoke all branches except for blocked* and wip/*
36 #
37 # Additionally master does not smoke with bleadperl
38 # ( implemented in maint/travis-ci_scripts/10_before_install.bash )
39 #
40 branches:
41   except:
42     - /^wip\//
43     - /^blocked/
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:
56     recipients:
57       - ribasushi@cpan.org
58       # Temporary - if it proves to be too noisy, we'll shut it off
59       #- dbix-class-devel@lists.scsys.co.uk
60     on_success: change
61     on_failure: always
62
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
70 language: perl
71
72 perl:
73   - "5.8"
74   - "5.20-extras"
75
76 env:
77   - CLEANTEST=false
78   - CLEANTEST=true VCPU_USE=1
79
80 sudo: true
81
82 matrix:
83   fast_finish: true
84   include:
85     # CLEANTEST of minimum supported with non-tracing poisoning
86     - perl: 5.8.3_nt_mb
87       env:
88         - CLEANTEST=true
89         - POISON_ENV=true
90         - DBIC_TRACE_PROFILE=console_monochrome
91         - BREWVER=5.8.3
92         - BREWOPTS="-Dusemorebits"
93
94     # Full Test of minimum supported without threads with non-tracing poisoning
95     - perl: 5.8.3_nt
96       env:
97         - CLEANTEST=false
98         - POISON_ENV=true
99         - BREWVER=5.8.3
100
101     # Full Test of minimum supported with threads with non-tracing poisoning
102     - perl: 5.8.5_thr
103       env:
104         - CLEANTEST=false
105         - POISON_ENV=true
106         - DBIC_TRACE_PROFILE=console
107         - BREWVER=5.8.5
108         - BREWOPTS="-Duseithreads"
109
110     # CLEANTEST of solaris-like perl with non-tracing poisoning
111     - perl: 5.8.4_nt
112       env:
113         - CLEANTEST=true
114         - POISON_ENV=true
115         - DBIC_TRACE_PROFILE=console
116         - BREWVER=5.8.4
117
118     # CLEANTEST: this particular perl is quite widespread
119     - perl: 5.8.8_thr_mb
120       env:
121         - CLEANTEST=true
122         - BREWVER=5.8.8
123         - BREWOPTS="-Duseithreads -Dusemorebits"
124
125     # CLEANTEST: this is the perl suse ships, with env poisoning
126     - perl: 5.10.0_thr_dbg
127       env:
128         - CLEANTEST=true
129         - POISON_ENV=true
130         - BREWVER=5.10.0
131         - BREWOPTS="-DDEBUGGING -Duseithreads"
132
133     # CLEANTEST: this one is in a number of debian-based LTS (test a sane CPAN.pm)
134     - perl: 5.14.2_thr_mb
135       env:
136         - CLEANTEST=true
137         - BREWVER=5.14.2
138         - BREWOPTS="-Duseithreads -Dusemorebits"
139
140     ###
141     # some permutations of tracing and envvar poisoning
142
143     - perl: 5.12.3_thr
144       env:
145         - CLEANTEST=true
146         - POISON_ENV=true
147         - DBIC_TRACE=1
148         - DBIC_MULTICREATE_DEBUG=1
149         - DBIC_STORAGE_RETRY_DEBUG=1
150         - DBIC_TRACE_PROFILE=console
151         - BREWVER=5.12.3
152         - BREWOPTS="-Duseithreads"
153
154     - perl: 5.16.3_thr_mb
155       env:
156         - CLEANTEST=false
157         - POISON_ENV=true
158         - DBIC_TRACE=1
159         - BREWVER=5.16.3
160         - BREWOPTS="-Duseithreads -Dusemorebits"
161
162     - perl: 5.18-extras
163       env:
164         - CLEANTEST=false
165         - POISON_ENV=true
166         - DBIC_TRACE=1
167         - DBIC_TRACE_PROFILE=console_monochrome
168         - DBICTEST_VIA_REPLICATED=0
169
170     ###
171     # Start of the allow_failures block
172
173     # threaded oldest possible with blead CPAN
174     - perl: devcpan_5.8.1_thr_mb
175       env:
176         - CLEANTEST=true
177         - DEVREL_DEPS=true
178         - BREWVER=5.8.1
179         - BREWOPTS="-Duseithreads -Dusemorebits"
180
181     # oldest possible with blead CPAN with poisoning
182     - perl: devcpan_5.8.1
183       env:
184         - CLEANTEST=true
185         - DEVREL_DEPS=true
186         - POISON_ENV=true
187         - BREWVER=5.8.1
188
189     # 5.8.7 threaded with blead CPAN with non-tracing poisoning
190     - perl: devcpan_5.8.7_thr
191       env:
192         - CLEANTEST=true
193         - DEVREL_DEPS=true
194         - POISON_ENV=true
195         - BREWVER=5.8.7
196         - BREWOPTS="-Duseithreads"
197
198     # 5.10.0 threaded with blead CPAN
199     - perl: devcpan_5.10.0_thr_mb
200       env:
201         - CLEANTEST=true
202         - DEVREL_DEPS=true
203         - BREWVER=5.10.0
204         - BREWOPTS="-Duseithreads -Dusemorebits"
205
206     # 5.12.1 with blead CPAN
207     - perl: devcpan_5.12.1_thr
208       env:
209         - CLEANTEST=true
210         - DEVREL_DEPS=true
211         - BREWVER=5.12.1
212         - BREWOPTS="-Duseithreads"
213
214     # bleadperl with stock CPAN, full depchain test with non-tracing poisoning
215     - perl: bleadperl
216       env:
217         - CLEANTEST=true
218         - POISON_ENV=true
219         - BREWVER=blead
220
221     # bleadperl with blead CPAN
222     - perl: devcpan_bleadperl_thr_mb
223       env:
224         - CLEANTEST=false
225         - DEVREL_DEPS=true
226         - BREWVER=blead
227         - BREWOPTS="-Duseithreads -Dusemorebits"
228
229     # CLEANTEST of http://schplog.schmorp.de/2015-06-06-a-stable-perl.html with non-tracing poisoning
230     - perl: schmorp_stableperl_thr_mb
231       env:
232         - CLEANTEST=true
233         - POISON_ENV=true
234         - BREWVER=schmorp_stableperl
235         - BREWOPTS="-Duseithreads -Dusemorebits"
236
237   # which ones of the above can fail
238   allow_failures:
239
240     # these run with various dev snapshots - allowed to fail
241     - perl: devcpan_5.8.1_thr_mb
242     - perl: devcpan_5.8.1
243     - perl: devcpan_5.8.7_thr
244     - perl: devcpan_5.10.0_thr_mb
245     - perl: devcpan_5.12.1_thr
246     - perl: bleadperl
247     - perl: devcpan_bleadperl_thr_mb
248     - perl: schmorp_stableperl_thr_mb
249
250
251 ###
252 ### For the following two phases -e is *set*
253 ###
254
255 before_install:
256   # common functions for all run phases below
257   #
258   # this is an exporter - sourcing it is crucial
259   # among other things it also sets -e
260   #
261   - source maint/travis-ci_scripts/common.bash
262
263   # Sets global envvars, downloads/configures debs based on CLEANTEST
264   # Sets extra DBICTEST_* envvars
265   #
266   # this is an exporter - sourcing it is crucial
267   #
268   - source maint/travis-ci_scripts/10_before_install.bash
269
270 install:
271   # Build and switch to a custom perl if requested
272   # Configure the perl env, preinstall some generic toolchain parts
273   # Possibly poison the environment
274   #
275   # this is an exporter - sourcing it is crucial
276   #
277   - source maint/travis-ci_scripts/20_install.bash
278
279 ###
280 ### From this point on -e is *unset*, rely on travis' error handling
281 ###
282   - set +e
283
284 before_script:
285   # Preinstall/install deps based on envvars/CLEANTEST
286   #
287   # need to invoke the after_failure script manually
288   # because 'after_failure' runs only after 'script' fails
289   #
290   - maint/getstatus maint/travis-ci_scripts/30_before_script.bash || ( maint/travis-ci_scripts/50_after_failure.bash && /bin/false )
291
292 script:
293   # Run actual tests
294   #
295   - maint/getstatus maint/travis-ci_scripts/40_script.bash
296
297 ###
298 ### Set -e back, work around https://github.com/travis-ci/travis-ci/issues/3533
299 ###
300   - set -e
301
302 after_success:
303   # Check if we can assemble a dist properly if not in CLEANTEST
304   #
305   - maint/getstatus maint/travis-ci_scripts/50_after_success.bash
306
307 after_failure:
308   # Final sysinfo printout on fail
309   #
310   - maint/getstatus maint/travis-ci_scripts/50_after_failure.bash
311
312 after_script:
313   # No tasks yet
314   #
315   #- maint/getstatus maint/travis-ci_scripts/60_after_script.bash