Add support for nested hashref form of col_accessor_map
[dbsrgits/DBIx-Class-Schema-Loader.git] / .travis.yml
CommitLineData
b7254ae2 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 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
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
32#
33# Smoke all branches except for blocked* and wip/*
34#
35# Additionally master does not smoke with bleadperl
36# ( implemented in maint/travis-ci_scripts/10_before_install.bash )
37#
38branches:
39 except:
40 - /^wip\//
41 - /^blocked/
42
43x_disabled_notifications:
44 irc:
45 channels:
46 - "irc.perl.org#dbic-smoke"
47 template:
48 - "%{branch}#%{build_number} by %{author}: %{message} (%{build_url})"
49 on_success: change
50 on_failure: always
51 use_notice: true
52
53 email:
54 recipients:
55 - ilmari@ilmari.org
56 # Temporary - if it proves to be too noisy, we'll shut it off
57 #- dbix-class-devel@lists.scsys.co.uk
58 on_success: change
59 on_failure: always
60
61# FIXME - This stuff is not yet available for free OSS accounts, sadpanda
62# First paragrah on http://about.travis-ci.org/docs/user/caching/
63#cache:
64# apt: true
65# directories:
66# - /var/cache/apt/archives
67
68language: perl
69
70perl:
0e64cfdd 71 - 5.20-extras
72 - "5.20" # needs quoting due to trailing zero
73 - 5.18-extras
74 - 5.18
b7254ae2 75
76env:
464bbc0a 77 - CLEANTEST=false DBICTEST_DB2=true
78 - CLEANTEST=false DBICTEST_ORA=true
79 - CLEANTEST=false DBICTEST_FIREBIRD=true
94e24115 80 - CLEANTEST=false DBICTEST_MYSQL_INNODB=1
b7254ae2 81 - CLEANTEST=true
82
4ef0f7f7 83matrix:
b7254ae2 84 fast_finish: true
85 include:
86 # this particular perl is quite widespread
87 - perl: 5.8.8_thr_mb
88 env:
89 - CLEANTEST=true
90 - BREWOPTS="-Duseithreads -Dusemorebits"
91 - BREWVER=5.8.8
92
93 # so is this one (test a sane CPAN.pm)
94 - perl: 5.12.4_thr_mb
95 env:
96 - CLEANTEST=true
97 - BREWOPTS="-Duseithreads -Dusemorebits"
98 - BREWVER=5.12.4
99
100 # this is the perl suse ships
101 - perl: 5.10.0_thr_dbg
102 env:
103 - CLEANTEST=true
104 - BREWOPTS="-DDEBUGGING -Duseithreads"
105 - BREWVER=5.10.0
106
107 # CLEANTEST of minimum supported
108 - perl: 5.8.3_nt_mb
109 env:
110 - CLEANTEST=true
111 - BREWOPTS="-Dusemorebits"
112 - BREWVER=5.8.3
113
114 # Full Test of minimum supported with threads
115 - perl: 5.8.5_thr
116 env:
117 - CLEANTEST=false
118 - BREWOPTS="-Duseithreads"
119 - BREWVER=5.8.5
120 - DBIC_TRACE_PROFILE=console
4ef0f7f7 121 - DBICTEST_MYSQL_INNODB=1
b7254ae2 122
123 # Full Test of minimum supported without threads
124 - perl: 5.8.3_nt
125 env:
126 - CLEANTEST=false
127 - BREWOPTS=""
128 - BREWVER=5.8.3
129 - DBIC_TRACE_PROFILE=console_monochrome
4ef0f7f7 130 - DBICTEST_MYSQL_INNODB=1
b7254ae2 131
132 ###
133 # some permutations of tracing and envvar poisoning
134
135 - perl: 5.16.2_thr_mb
136 env:
137 - CLEANTEST=false
138 - POISON_ENV=true
139 - DBIC_TRACE=1
140 - DBIC_MULTICREATE_DEBUG=0
4ef0f7f7 141 - DBICTEST_MYSQL_INNODB=1
b7254ae2 142 - BREWOPTS="-Duseithreads -Dusemorebits"
143 - BREWVER=5.16.2
144
145 - perl: 5.18
146 env:
147 - CLEANTEST=false
148 - POISON_ENV=true
149 - DBIC_TRACE_PROFILE=console
150
151 - perl: 5.8
152 env:
153 - CLEANTEST=true
154 - POISON_ENV=true
155 - DBIC_TRACE=1
156 - DBIC_TRACE_PROFILE=console
4ef0f7f7 157 - DBICTEST_MYSQL_INNODB=1
b7254ae2 158
159 - perl: 5.18
160 env:
161 - CLEANTEST=false
162 - POISON_ENV=true
163 - DBIC_TRACE=1
164 - DBIC_TRACE_PROFILE=console_monochrome
165 - DBIC_MULTICREATE_DEBUG=0
4ef0f7f7 166 - DBICTEST_MYSQL_INNODB=1
b7254ae2 167
168 ###
169 # Start of the allow_failures block
170
171 # old threaded with blead CPAN
172 - perl: devcpan_5.8.7_thr
173 env:
174 - CLEANTEST=true
175 - BREWOPTS="-Duseithreads"
176 - BREWVER=5.8.7
177 - DEVREL_DEPS=true
178
179 # 5.10.0 threaded with blead CPAN
180 - perl: devcpan_5.10.0_thr_mb
181 env:
182 - CLEANTEST=true
183 - BREWOPTS="-Duseithreads -Dusemorebits"
184 - BREWVER=5.10.0
185 - DEVREL_DEPS=true
186
187 # 5.12.2 with blead CPAN
188 - perl: devcpan_5.12.2_thr
189 env:
190 - CLEANTEST=true
191 - BREWOPTS="-Duseithreads"
192 - BREWVER=5.12.2
193 - DEVREL_DEPS=true
194
195 # recentish threaded stable with blead CPAN
196 - perl: devcpan_5.18.2_thr_mb
197 env:
198 - CLEANTEST=false
199 - BREWOPTS="-Duseithreads -Dusemorebits"
200 - BREWVER=5.18.2
201 - DEVREL_DEPS=true
4ef0f7f7 202 - DBICTEST_MYSQL_INNODB=1
b7254ae2 203
204 # bleadperl with stock CPAN, full depchain test
205 - perl: bleadperl
206 env:
207 - CLEANTEST=true
208 - BREWVER=blead
209
210 # bleadperl with blead CPAN
211 - perl: devcpan_bleadperl_thr_mb
212 env:
213 - CLEANTEST=false
214 - BREWOPTS="-Duseithreads -Dusemorebits"
215 - BREWVER=blead
216 - DEVREL_DEPS=true
4ef0f7f7 217 - DBICTEST_MYSQL_INNODB=1
b7254ae2 218
219
220 # which ones of the above can fail
221 allow_failures:
222
223 # these run with various dev snapshots - allowed to fail
224 - perl: devcpan_5.8.7_thr
225 - perl: devcpan_5.10.0_thr_mb
226 - perl: devcpan_5.12.2_thr
227 - perl: devcpan_5.18.2_thr_mb
228 - perl: bleadperl
229 - perl: devcpan_bleadperl_thr_mb
230
ddc4c0e6 231 # Several upstream deps are flaky on 5.8.3
232 - perl: 5.8.3_nt
233 - perl: 5.8.3_nt_mb
234
b7254ae2 235
236# sourcing the files is *EXTREMELY* important - otherwise
237# no envvars will survive
238
239# the entire run times out after 50 minutes, or after 5 minutes without
240# console output
241
242before_install:
a61771df 243 # common functions for all run phases below
244 #
245 # this is an exporter - sourcing it is crucial
246 # among other things it also sets -e
247 #
248 - source maint/travis-ci_scripts/common.bash
249
b7254ae2 250 # Sets global envvars, downloads/configures debs based on CLEANTEST
251 # Sets extra DBICTEST_* envvars
252 #
a61771df 253 # this is an exporter - sourcing it is crucial
254 #
b7254ae2 255 - source maint/travis-ci_scripts/10_before_install.bash
256
257install:
258 # Build and switch to a custom perl if requested
259 # Configure the perl env, preinstall some generic toolchain parts
260 #
a61771df 261 # this is an exporter - sourcing it is crucial
262 #
b7254ae2 263 - source maint/travis-ci_scripts/20_install.bash
264
a61771df 265###
266### From this point on -e is *unset*, rely on travis' error handling
267###
268 - set +e
269
b7254ae2 270before_script:
271 # Preinstall/install deps based on envvars/CLEANTEST
272 #
a61771df 273 # need to invoke the after_failure script manually
274 # because 'after_failure' runs only after 'script' fails
275 #
276 - maint/getstatus maint/travis-ci_scripts/30_before_script.bash || ( maint/travis-ci_scripts/50_after_failure.bash && /bin/false )
b7254ae2 277
278script:
279 # Run actual tests
280 #
a61771df 281 - maint/getstatus maint/travis-ci_scripts/40_script.bash
b7254ae2 282
283after_success:
a61771df 284 # No tasks yet
285 #
286 # - maint/getstatus maint/travis-ci_scripts/50_after_success.bash
b7254ae2 287
288after_failure:
a61771df 289 # Final sysinfo printout on fail
b7254ae2 290 #
a61771df 291 - maint/getstatus maint/travis-ci_scripts/50_after_failure.bash
b7254ae2 292
293after_script:
294 # No tasks yet
295 #
a61771df 296 #- maint/getstatus maint/travis-ci_scripts/60_after_script.bash