Fix test failure on 5.8.x with DBIC_TRACE=1 (introduced by 68b8ba54)
[dbsrgits/DBIx-Class.git] / .travis.yml
CommitLineData
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#
5ac4a96d 21# * The perl builds and the DBIC tests run under VCPU_USE number of threads.
6d2b5c14 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 40branches:
a0acdea0 41 except:
42 - /^wip\//
43 - /^blocked/
d70070c9 44
45notifications:
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 70language: perl
d70070c9 71
915876d7 72perl:
e52712a8 73 - "5.8"
4ae45d69 74 - "5.20-extras"
915876d7 75
d70070c9 76env:
77 - CLEANTEST=false
5ac4a96d 78 - CLEANTEST=true VCPU_USE=1
dea888a6 79
cea30127 80sudo: true
81
d70070c9 82matrix:
070b8a0c 83 fast_finish: true
d70070c9 84 include:
e52712a8 85 # CLEANTEST of minimum supported with non-tracing poisoning
86 - perl: 5.8.3_nt_mb
d70070c9 87 env:
ced296a8 88 - CLEANTEST=true
e9d552de 89 - POISON_ENV=true
e52712a8 90 - DBIC_TRACE_PROFILE=console_monochrome
91 - BREWVER=5.8.3
92 - BREWOPTS="-Dusemorebits"
915876d7 93
e93fb362 94 # Full Test of minimum supported without threads with plain poisoned trace
e52712a8 95 - perl: 5.8.3_nt
6d2b5c14 96 env:
e52712a8 97 - CLEANTEST=false
98 - POISON_ENV=true
e93fb362 99 - DBIC_TRACE=1
e52712a8 100 - BREWVER=5.8.3
6d2b5c14 101
e52712a8 102 # Full Test of minimum supported with threads with non-tracing poisoning
103 - perl: 5.8.5_thr
104 env:
105 - CLEANTEST=false
106 - POISON_ENV=true
107 - DBIC_TRACE_PROFILE=console
108 - BREWVER=5.8.5
109 - BREWOPTS="-Duseithreads"
110
111 # CLEANTEST of solaris-like perl with non-tracing poisoning
112 - perl: 5.8.4_nt
d70070c9 113 env:
114 - CLEANTEST=true
e52712a8 115 - POISON_ENV=true
116 - DBIC_TRACE_PROFILE=console
117 - BREWVER=5.8.4
d70070c9 118
e52712a8 119 # CLEANTEST: this particular perl is quite widespread
ee70a1ed 120 - perl: 5.8.8_thr
d70070c9 121 env:
122 - CLEANTEST=true
e52712a8 123 - BREWVER=5.8.8
ee70a1ed 124 - BREWOPTS="-Duseithreads"
d70070c9 125
e9d552de 126 # CLEANTEST: this is the perl suse ships, with env poisoning
e52712a8 127 - perl: 5.10.0_thr_dbg
ced296a8 128 env:
e52712a8 129 - CLEANTEST=true
e9d552de 130 - POISON_ENV=true
e52712a8 131 - BREWVER=5.10.0
132 - BREWOPTS="-DDEBUGGING -Duseithreads"
ced296a8 133
e52712a8 134 # CLEANTEST: this one is in a number of debian-based LTS (test a sane CPAN.pm)
135 - perl: 5.14.2_thr_mb
ced296a8 136 env:
e52712a8 137 - CLEANTEST=true
138 - BREWVER=5.14.2
139 - BREWOPTS="-Duseithreads -Dusemorebits"
ced296a8 140
141 ###
eed5492f 142 # some permutations of tracing and envvar poisoning
ced296a8 143
e52712a8 144 - perl: 5.12.3_thr
7c1a09fc 145 env:
e52712a8 146 - CLEANTEST=true
e9d552de 147 - POISON_ENV=true
7c1a09fc 148 - DBIC_TRACE=1
e52712a8 149 - DBIC_MULTICREATE_DEBUG=1
150 - DBIC_STORAGE_RETRY_DEBUG=1
7c1a09fc 151 - DBIC_TRACE_PROFILE=console
e52712a8 152 - BREWVER=5.12.3
153 - BREWOPTS="-Duseithreads"
eba59b7e 154
e52712a8 155 - perl: 5.16.3_thr_mb
eba59b7e 156 env:
e52712a8 157 - CLEANTEST=false
e52712a8 158 - POISON_ENV=true
e9d552de 159 - DBIC_TRACE=1
e52712a8 160 - BREWVER=5.16.3
161 - BREWOPTS="-Duseithreads -Dusemorebits"
eba59b7e 162
4ae45d69 163 - perl: 5.18-extras
eba59b7e 164 env:
165 - CLEANTEST=false
e52712a8 166 - POISON_ENV=true
e9d552de 167 - DBIC_TRACE=1
eba59b7e 168 - DBIC_TRACE_PROFILE=console_monochrome
0ba0c34f 169 - DBICTEST_VIA_REPLICATED=0
eba59b7e 170
261141ce 171 ###
172 # Start of the allow_failures block
173
e9d552de 174 # threaded oldest possible with blead CPAN
4841171c 175 - perl: devcpan_5.8.1_thr_mb
176 env:
177 - CLEANTEST=true
178 - DEVREL_DEPS=true
4841171c 179 - BREWVER=5.8.1
180 - BREWOPTS="-Duseithreads -Dusemorebits"
181
e93fb362 182 # oldest possible with blead CPAN with poisoning and plain trace
e9d552de 183 - perl: devcpan_5.8.1
dd5de10a 184 env:
185 - CLEANTEST=true
dd5de10a 186 - DEVREL_DEPS=true
e52712a8 187 - POISON_ENV=true
e93fb362 188 - DBIC_TRACE=1
e9d552de 189 - BREWVER=5.8.1
190
fb30f0c0 191 # 5.8.3 with blead CPAN
192 - perl: devcpan_5.8.3_mb
193 env:
194 - CLEANTEST=false
195 - DEVREL_DEPS=true
196 - BREWVER=5.8.3
197 - BREWOPTS="-Dusemorebits"
198
e9d552de 199 # 5.8.7 threaded with blead CPAN with non-tracing poisoning
200 - perl: devcpan_5.8.7_thr
201 env:
202 - CLEANTEST=true
203 - DEVREL_DEPS=true
204 - POISON_ENV=true
205 - BREWVER=5.8.7
e52712a8 206 - BREWOPTS="-Duseithreads"
dd5de10a 207
ee70a1ed 208 # 5.8.8 threaded MB (exercises P5#72210)
209 - perl: devcpan_5.8.8_thr_mb
210 env:
211 - CLEANTEST=true
212 - DEVREL_DEPS=true
213 - BREWVER=5.8.8
214 - BREWOPTS="-Duseithreads -Dusemorebits"
215
e6b373aa 216 # 5.10.0 threaded with blead CPAN
217 - perl: devcpan_5.10.0_thr_mb
218 env:
219 - CLEANTEST=true
e6b373aa 220 - DEVREL_DEPS=true
e52712a8 221 - BREWVER=5.10.0
222 - BREWOPTS="-Duseithreads -Dusemorebits"
e6b373aa 223
e52712a8 224 # 5.12.1 with blead CPAN
225 - perl: devcpan_5.12.1_thr
e6b373aa 226 env:
227 - CLEANTEST=true
2f51deb1 228 - DEVREL_DEPS=true
e52712a8 229 - BREWVER=5.12.1
230 - BREWOPTS="-Duseithreads"
2f51deb1 231
e52712a8 232 # bleadperl with stock CPAN, full depchain test with non-tracing poisoning
c47de5de 233 - perl: bleadperl
261141ce 234 env:
c47de5de 235 - CLEANTEST=true
e52712a8 236 - POISON_ENV=true
261141ce 237 - BREWVER=blead
238
e9d552de 239 # bleadperl with blead CPAN
2f51deb1 240 - perl: devcpan_bleadperl_thr_mb
241 env:
242 - CLEANTEST=false
2f51deb1 243 - DEVREL_DEPS=true
e52712a8 244 - BREWVER=blead
245 - BREWOPTS="-Duseithreads -Dusemorebits"
2f51deb1 246
62f2092b 247 # CLEANTEST of http://schplog.schmorp.de/2015-06-06-a-stable-perl.html with non-tracing poisoning
248 - perl: schmorp_stableperl_thr_mb
249 env:
250 - CLEANTEST=true
251 - POISON_ENV=true
252 - BREWVER=schmorp_stableperl
253 - BREWOPTS="-Duseithreads -Dusemorebits"
261141ce 254
255 # which ones of the above can fail
256 allow_failures:
f2f65c95 257
f207111d 258 # these run with various dev snapshots - allowed to fail
4841171c 259 - perl: devcpan_5.8.1_thr_mb
e9d552de 260 - perl: devcpan_5.8.1
fb30f0c0 261 - perl: devcpan_5.8.3_mb
e9d552de 262 - perl: devcpan_5.8.7_thr
ee70a1ed 263 - perl: devcpan_5.8.8_thr_mb
dd5de10a 264 - perl: devcpan_5.10.0_thr_mb
e52712a8 265 - perl: devcpan_5.12.1_thr
c47de5de 266 - perl: bleadperl
2f51deb1 267 - perl: devcpan_bleadperl_thr_mb
62f2092b 268 - perl: schmorp_stableperl_thr_mb
261141ce 269
270
afeb40d2 271###
272### For the following two phases -e is *set*
273###
b58ecb01 274
d70070c9 275before_install:
2b32a020 276 # common functions for all run phases below
afeb40d2 277 #
278 # this is an exporter - sourcing it is crucial
279 # among other things it also sets -e
280 #
2b32a020 281 - source maint/travis-ci_scripts/common.bash
282
b58ecb01 283 # Sets global envvars, downloads/configures debs based on CLEANTEST
284 # Sets extra DBICTEST_* envvars
285 #
afeb40d2 286 # this is an exporter - sourcing it is crucial
287 #
b58ecb01 288 - source maint/travis-ci_scripts/10_before_install.bash
d70070c9 289
290install:
291 # Build and switch to a custom perl if requested
b58ecb01 292 # Configure the perl env, preinstall some generic toolchain parts
afeb40d2 293 # Possibly poison the environment
294 #
295 # this is an exporter - sourcing it is crucial
b58ecb01 296 #
b58ecb01 297 - source maint/travis-ci_scripts/20_install.bash
d70070c9 298
afeb40d2 299###
300### From this point on -e is *unset*, rely on travis' error handling
301###
302 - set +e
303
b58ecb01 304before_script:
305 # Preinstall/install deps based on envvars/CLEANTEST
306 #
ac4e80df 307 # need to invoke the after_failure script manually
308 # because 'after_failure' runs only after 'script' fails
309 #
310 - maint/getstatus maint/travis-ci_scripts/30_before_script.bash || ( maint/travis-ci_scripts/50_after_failure.bash && /bin/false )
c299fd65 311
b58ecb01 312script:
313 # Run actual tests
314 #
ac4e80df 315 - maint/getstatus maint/travis-ci_scripts/40_script.bash
c87d30a7 316
6bb14e9b 317###
318### Set -e back, work around https://github.com/travis-ci/travis-ci/issues/3533
319###
320 - set -e
321
c87d30a7 322after_success:
b58ecb01 323 # Check if we can assemble a dist properly if not in CLEANTEST
324 #
ac4e80df 325 - maint/getstatus maint/travis-ci_scripts/50_after_success.bash
b58ecb01 326
327after_failure:
ac4e80df 328 # Final sysinfo printout on fail
b58ecb01 329 #
ac4e80df 330 - maint/getstatus maint/travis-ci_scripts/50_after_failure.bash
b58ecb01 331
332after_script:
333 # No tasks yet
334 #
ac4e80df 335 #- maint/getstatus maint/travis-ci_scripts/60_after_script.bash