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