1 # Some overall notes on how this works
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
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
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
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
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
31 # the entire run times out after 50 minutes, or after 5 minutes without
35 # Smoke all branches except for blocked* and wip/*
37 # Additionally master does not smoke with bleadperl
38 # ( implemented in maint/travis-ci_scripts/10_before_install.bash )
48 - "irc.perl.org#dbic-smoke"
50 - "%{branch}#%{build_number} by %{author}: %{message} (%{build_url})"
58 # Temporary - if it proves to be too noisy, we'll shut it off
59 #- dbix-class-devel@lists.scsys.co.uk
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/
68 # - /var/cache/apt/archives
83 # CLEANTEST of minimum supported with non-tracing poisoning
87 - DBIC_TRACE_PROFILE=console_monochrome
89 - BREWOPTS="-Dusemorebits"
91 # Full Test of minimum supported without threads with non-tracing poisoning
98 # Full Test of minimum supported with threads with non-tracing poisoning
103 - DBIC_TRACE_PROFILE=console
105 - BREWOPTS="-Duseithreads"
107 # CLEANTEST of solaris-like perl with non-tracing poisoning
112 - DBIC_TRACE_PROFILE=console
115 # CLEANTEST: this particular perl is quite widespread
120 - BREWOPTS="-Duseithreads -Dusemorebits"
122 # CLEANTEST: this is the perl suse ships
123 - perl: 5.10.0_thr_dbg
127 - BREWOPTS="-DDEBUGGING -Duseithreads"
129 # CLEANTEST: this one is in a number of debian-based LTS (test a sane CPAN.pm)
130 - perl: 5.14.2_thr_mb
134 - BREWOPTS="-Duseithreads -Dusemorebits"
137 # some permutations of tracing and envvar poisoning
143 - DBIC_MULTICREATE_DEBUG=1
144 - DBIC_STORAGE_RETRY_DEBUG=1
146 - DBIC_TRACE_PROFILE=console
148 - BREWOPTS="-Duseithreads"
150 - perl: 5.16.3_thr_mb
156 - BREWOPTS="-Duseithreads -Dusemorebits"
163 - DBIC_TRACE_PROFILE=console_monochrome
166 # Start of the allow_failures block
168 # threaded oldest possible with blead CPAN with non-tracing poisoning
169 - perl: devcpan_5.8.1_thr_mb
175 - BREWOPTS="-Duseithreads -Dusemorebits"
177 # 5.8.4 threaded with blead CPAN with non-tracing poisoning
178 - perl: devcpan_5.8.4_thr
184 - BREWOPTS="-Duseithreads"
186 # 5.10.0 threaded with blead CPAN
187 - perl: devcpan_5.10.0_thr_mb
192 - BREWOPTS="-Duseithreads -Dusemorebits"
194 # 5.12.1 with blead CPAN
195 - perl: devcpan_5.12.1_thr
200 - BREWOPTS="-Duseithreads"
202 # bleadperl with stock CPAN, full depchain test with non-tracing poisoning
209 # bleadperl with blead CPAN with non-tracing poisoning
210 - perl: devcpan_bleadperl_thr_mb
216 - BREWOPTS="-Duseithreads -Dusemorebits"
219 # which ones of the above can fail
222 # these run with various dev snapshots - allowed to fail
223 - perl: devcpan_5.8.1_thr_mb
224 - perl: devcpan_5.8.4_thr
225 - perl: devcpan_5.10.0_thr_mb
226 - perl: devcpan_5.12.1_thr
228 - perl: devcpan_bleadperl_thr_mb
232 ### For the following two phases -e is *set*
236 # common functions for all run phases below
238 # this is an exporter - sourcing it is crucial
239 # among other things it also sets -e
241 - source maint/travis-ci_scripts/common.bash
243 # Sets global envvars, downloads/configures debs based on CLEANTEST
244 # Sets extra DBICTEST_* envvars
246 # this is an exporter - sourcing it is crucial
248 - source maint/travis-ci_scripts/10_before_install.bash
251 # Build and switch to a custom perl if requested
252 # Configure the perl env, preinstall some generic toolchain parts
253 # Possibly poison the environment
255 # this is an exporter - sourcing it is crucial
257 - source maint/travis-ci_scripts/20_install.bash
260 ### From this point on -e is *unset*, rely on travis' error handling
265 # Preinstall/install deps based on envvars/CLEANTEST
267 # need to invoke the after_failure script manually
268 # because 'after_failure' runs only after 'script' fails
270 - maint/getstatus maint/travis-ci_scripts/30_before_script.bash || ( maint/travis-ci_scripts/50_after_failure.bash && /bin/false )
275 - maint/getstatus maint/travis-ci_scripts/40_script.bash
278 # Check if we can assemble a dist properly if not in CLEANTEST
280 - maint/getstatus maint/travis-ci_scripts/50_after_success.bash
283 # Final sysinfo printout on fail
285 - maint/getstatus maint/travis-ci_scripts/50_after_failure.bash
290 #- maint/getstatus maint/travis-ci_scripts/60_after_script.bash