Make sure tests pass without a compiler present (another step to RT#74706)
[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 matrix:
81   fast_finish: true
82   include:
83     # CLEANTEST of minimum supported with non-tracing poisoning
84     - perl: 5.8.3_nt_mb
85       env:
86         - CLEANTEST=true
87         - POISON_ENV=true
88         - DBIC_TRACE_PROFILE=console_monochrome
89         - BREWVER=5.8.3
90         - BREWOPTS="-Dusemorebits"
91
92     # Full Test of minimum supported without threads with non-tracing poisoning
93     - perl: 5.8.3_nt
94       env:
95         - CLEANTEST=false
96         - POISON_ENV=true
97         - BREWVER=5.8.3
98
99     # Full Test of minimum supported with threads with non-tracing poisoning
100     - perl: 5.8.5_thr
101       env:
102         - CLEANTEST=false
103         - POISON_ENV=true
104         - DBIC_TRACE_PROFILE=console
105         - BREWVER=5.8.5
106         - BREWOPTS="-Duseithreads"
107
108     # CLEANTEST of solaris-like perl with non-tracing poisoning
109     - perl: 5.8.4_nt
110       env:
111         - CLEANTEST=true
112         - POISON_ENV=true
113         - DBIC_TRACE_PROFILE=console
114         - BREWVER=5.8.4
115
116     # CLEANTEST: this particular perl is quite widespread
117     - perl: 5.8.8_thr_mb
118       env:
119         - CLEANTEST=true
120         - BREWVER=5.8.8
121         - BREWOPTS="-Duseithreads -Dusemorebits"
122
123     # CLEANTEST: this is the perl suse ships, with env poisoning
124     - perl: 5.10.0_thr_dbg
125       env:
126         - CLEANTEST=true
127         - POISON_ENV=true
128         - BREWVER=5.10.0
129         - BREWOPTS="-DDEBUGGING -Duseithreads"
130
131     # CLEANTEST: this one is in a number of debian-based LTS (test a sane CPAN.pm)
132     - perl: 5.14.2_thr_mb
133       env:
134         - CLEANTEST=true
135         - BREWVER=5.14.2
136         - BREWOPTS="-Duseithreads -Dusemorebits"
137
138     ###
139     # some permutations of tracing and envvar poisoning
140
141     - perl: 5.12.3_thr
142       env:
143         - CLEANTEST=true
144         - POISON_ENV=true
145         - DBIC_TRACE=1
146         - DBIC_MULTICREATE_DEBUG=1
147         - DBIC_STORAGE_RETRY_DEBUG=1
148         - DBIC_TRACE_PROFILE=console
149         - BREWVER=5.12.3
150         - BREWOPTS="-Duseithreads"
151
152     - perl: 5.16.3_thr_mb
153       env:
154         - CLEANTEST=false
155         - POISON_ENV=true
156         - DBIC_TRACE=1
157         - BREWVER=5.16.3
158         - BREWOPTS="-Duseithreads -Dusemorebits"
159
160     - perl: 5.18-extras
161       env:
162         - CLEANTEST=false
163         - POISON_ENV=true
164         - DBIC_TRACE=1
165         - DBIC_TRACE_PROFILE=console_monochrome
166         - DBICTEST_VIA_REPLICATED=0
167
168     ###
169     # Start of the allow_failures block
170
171     # threaded oldest possible with blead CPAN
172     - perl: devcpan_5.8.1_thr_mb
173       env:
174         - CLEANTEST=true
175         - DEVREL_DEPS=true
176         - BREWVER=5.8.1
177         - BREWOPTS="-Duseithreads -Dusemorebits"
178
179     # oldest possible with blead CPAN with poisoning
180     - perl: devcpan_5.8.1
181       env:
182         - CLEANTEST=true
183         - DEVREL_DEPS=true
184         - POISON_ENV=true
185         - BREWVER=5.8.1
186
187     # 5.8.7 threaded with blead CPAN with non-tracing poisoning
188     - perl: devcpan_5.8.7_thr
189       env:
190         - CLEANTEST=true
191         - DEVREL_DEPS=true
192         - POISON_ENV=true
193         - BREWVER=5.8.7
194         - BREWOPTS="-Duseithreads"
195
196     # 5.10.0 threaded with blead CPAN
197     - perl: devcpan_5.10.0_thr_mb
198       env:
199         - CLEANTEST=true
200         - DEVREL_DEPS=true
201         - BREWVER=5.10.0
202         - BREWOPTS="-Duseithreads -Dusemorebits"
203
204     # 5.12.1 with blead CPAN
205     - perl: devcpan_5.12.1_thr
206       env:
207         - CLEANTEST=true
208         - DEVREL_DEPS=true
209         - BREWVER=5.12.1
210         - BREWOPTS="-Duseithreads"
211
212     # bleadperl with stock CPAN, full depchain test with non-tracing poisoning
213     - perl: bleadperl
214       env:
215         - CLEANTEST=true
216         - POISON_ENV=true
217         - BREWVER=blead
218
219     # bleadperl with blead CPAN
220     - perl: devcpan_bleadperl_thr_mb
221       env:
222         - CLEANTEST=false
223         - DEVREL_DEPS=true
224         - BREWVER=blead
225         - BREWOPTS="-Duseithreads -Dusemorebits"
226
227
228   # which ones of the above can fail
229   allow_failures:
230
231     # these run with various dev snapshots - allowed to fail
232     - perl: devcpan_5.8.1_thr_mb
233     - perl: devcpan_5.8.1
234     - perl: devcpan_5.8.7_thr
235     - perl: devcpan_5.10.0_thr_mb
236     - perl: devcpan_5.12.1_thr
237     - perl: bleadperl
238     - perl: devcpan_bleadperl_thr_mb
239
240
241 ###
242 ### For the following two phases -e is *set*
243 ###
244
245 before_install:
246   # common functions for all run phases below
247   #
248   # this is an exporter - sourcing it is crucial
249   # among other things it also sets -e
250   #
251   - source maint/travis-ci_scripts/common.bash
252
253   # Sets global envvars, downloads/configures debs based on CLEANTEST
254   # Sets extra DBICTEST_* envvars
255   #
256   # this is an exporter - sourcing it is crucial
257   #
258   - source maint/travis-ci_scripts/10_before_install.bash
259
260 install:
261   # Build and switch to a custom perl if requested
262   # Configure the perl env, preinstall some generic toolchain parts
263   # Possibly poison the environment
264   #
265   # this is an exporter - sourcing it is crucial
266   #
267   - source maint/travis-ci_scripts/20_install.bash
268
269 ###
270 ### From this point on -e is *unset*, rely on travis' error handling
271 ###
272   - set +e
273
274 before_script:
275   # Preinstall/install deps based on envvars/CLEANTEST
276   #
277   # need to invoke the after_failure script manually
278   # because 'after_failure' runs only after 'script' fails
279   #
280   - maint/getstatus maint/travis-ci_scripts/30_before_script.bash || ( maint/travis-ci_scripts/50_after_failure.bash && /bin/false )
281
282 script:
283   # Run actual tests
284   #
285   - maint/getstatus maint/travis-ci_scripts/40_script.bash
286
287 ###
288 ### Set -e back, work around https://github.com/travis-ci/travis-ci/issues/3533
289 ###
290   - set -e
291
292 after_success:
293   # Check if we can assemble a dist properly if not in CLEANTEST
294   #
295   - maint/getstatus maint/travis-ci_scripts/50_after_success.bash
296
297 after_failure:
298   # Final sysinfo printout on fail
299   #
300   - maint/getstatus maint/travis-ci_scripts/50_after_failure.bash
301
302 after_script:
303   # No tasks yet
304   #
305   #- maint/getstatus maint/travis-ci_scripts/60_after_script.bash