Install DBIC dev rel under CLEANTEST="false"
[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:
71 - "5.18"
d1975f08 72 - "5.16"
b7254ae2 73
74env:
75 - CLEANTEST=false
94e24115 76 - CLEANTEST=false DBICTEST_MYSQL_INNODB=1
b7254ae2 77 - CLEANTEST=true
78
79x_disabled_matrix:
80 fast_finish: true
81 include:
82 # this particular perl is quite widespread
83 - perl: 5.8.8_thr_mb
84 env:
85 - CLEANTEST=true
86 - BREWOPTS="-Duseithreads -Dusemorebits"
87 - BREWVER=5.8.8
88
89 # so is this one (test a sane CPAN.pm)
90 - perl: 5.12.4_thr_mb
91 env:
92 - CLEANTEST=true
93 - BREWOPTS="-Duseithreads -Dusemorebits"
94 - BREWVER=5.12.4
95
96 # this is the perl suse ships
97 - perl: 5.10.0_thr_dbg
98 env:
99 - CLEANTEST=true
100 - BREWOPTS="-DDEBUGGING -Duseithreads"
101 - BREWVER=5.10.0
102
103 # CLEANTEST of minimum supported
104 - perl: 5.8.3_nt_mb
105 env:
106 - CLEANTEST=true
107 - BREWOPTS="-Dusemorebits"
108 - BREWVER=5.8.3
109
110 # Full Test of minimum supported with threads
111 - perl: 5.8.5_thr
112 env:
113 - CLEANTEST=false
114 - BREWOPTS="-Duseithreads"
115 - BREWVER=5.8.5
116 - DBIC_TRACE_PROFILE=console
117
118 # Full Test of minimum supported without threads
119 - perl: 5.8.3_nt
120 env:
121 - CLEANTEST=false
122 - BREWOPTS=""
123 - BREWVER=5.8.3
124 - DBIC_TRACE_PROFILE=console_monochrome
125
126 ###
127 # some permutations of tracing and envvar poisoning
128
129 - perl: 5.16.2_thr_mb
130 env:
131 - CLEANTEST=false
132 - POISON_ENV=true
133 - DBIC_TRACE=1
134 - DBIC_MULTICREATE_DEBUG=0
135 - BREWOPTS="-Duseithreads -Dusemorebits"
136 - BREWVER=5.16.2
137
138 - perl: 5.18
139 env:
140 - CLEANTEST=false
141 - POISON_ENV=true
142 - DBIC_TRACE_PROFILE=console
143
144 - perl: 5.8
145 env:
146 - CLEANTEST=true
147 - POISON_ENV=true
148 - DBIC_TRACE=1
149 - DBIC_TRACE_PROFILE=console
150
151 - perl: 5.18
152 env:
153 - CLEANTEST=false
154 - POISON_ENV=true
155 - DBIC_TRACE=1
156 - DBIC_TRACE_PROFILE=console_monochrome
157 - DBIC_MULTICREATE_DEBUG=0
158
159 ###
160 # Start of the allow_failures block
161
162 # old threaded with blead CPAN
163 - perl: devcpan_5.8.7_thr
164 env:
165 - CLEANTEST=true
166 - BREWOPTS="-Duseithreads"
167 - BREWVER=5.8.7
168 - DEVREL_DEPS=true
169
170 # 5.10.0 threaded with blead CPAN
171 - perl: devcpan_5.10.0_thr_mb
172 env:
173 - CLEANTEST=true
174 - BREWOPTS="-Duseithreads -Dusemorebits"
175 - BREWVER=5.10.0
176 - DEVREL_DEPS=true
177
178 # 5.12.2 with blead CPAN
179 - perl: devcpan_5.12.2_thr
180 env:
181 - CLEANTEST=true
182 - BREWOPTS="-Duseithreads"
183 - BREWVER=5.12.2
184 - DEVREL_DEPS=true
185
186 # recentish threaded stable with blead CPAN
187 - perl: devcpan_5.18.2_thr_mb
188 env:
189 - CLEANTEST=false
190 - BREWOPTS="-Duseithreads -Dusemorebits"
191 - BREWVER=5.18.2
192 - DEVREL_DEPS=true
193
194 # bleadperl with stock CPAN, full depchain test
195 - perl: bleadperl
196 env:
197 - CLEANTEST=true
198 - BREWVER=blead
199
200 # bleadperl with blead CPAN
201 - perl: devcpan_bleadperl_thr_mb
202 env:
203 - CLEANTEST=false
204 - BREWOPTS="-Duseithreads -Dusemorebits"
205 - BREWVER=blead
206 - DEVREL_DEPS=true
207
208
209 # which ones of the above can fail
210 allow_failures:
211
212 # these run with various dev snapshots - allowed to fail
213 - perl: devcpan_5.8.7_thr
214 - perl: devcpan_5.10.0_thr_mb
215 - perl: devcpan_5.12.2_thr
216 - perl: devcpan_5.18.2_thr_mb
217 - perl: bleadperl
218 - perl: devcpan_bleadperl_thr_mb
219
220
221# sourcing the files is *EXTREMELY* important - otherwise
222# no envvars will survive
223
224# the entire run times out after 50 minutes, or after 5 minutes without
225# console output
226
227before_install:
228 # Sets global envvars, downloads/configures debs based on CLEANTEST
229 # Sets extra DBICTEST_* envvars
230 #
231 - source maint/travis-ci_scripts/10_before_install.bash
232
233install:
234 # Build and switch to a custom perl if requested
235 # Configure the perl env, preinstall some generic toolchain parts
236 #
237 - source maint/travis-ci_scripts/20_install.bash
238
239before_script:
240 # Preinstall/install deps based on envvars/CLEANTEST
241 #
242 - source maint/travis-ci_scripts/30_before_script.bash
243
244script:
245 # Run actual tests
246 #
247 - source maint/travis-ci_scripts/40_script.bash
248
249after_success:
250 # Check if we can assemble a dist properly if not in CLEANTEST
251 # skipped for now
252 # - source maint/travis-ci_scripts/50_after_success.bash
253
254after_failure:
255 # No tasks yet
256 #
257 #- source maint/travis-ci_scripts/50_after_failure.bash
258
259after_script:
260 # No tasks yet
261 #
262 #- source maint/travis-ci_scripts/60_after_script.bash
263
264 # if we do not unset this before we terminate the travis teardown will
265 # mark the entire job as failed
266 - set +e