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
33 # Smoke all branches except for blocked* and wip/*
35 # Additionally master does not smoke with bleadperl
36 # ( implemented in maint/travis-ci_scripts/10_before_install.bash )
46 - "irc.perl.org#dbic-smoke"
48 - "%{branch}#%{build_number} by %{author}: %{message} (%{build_url})"
56 # Temporary - if it proves to be too noisy, we'll shut it off
57 #- dbix-class-devel@lists.scsys.co.uk
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/
66 # - /var/cache/apt/archives
79 # this particular perl is quite widespread
83 - BREWOPTS="-Duseithreads -Dusemorebits"
86 # so is this one (test a sane CPAN.pm)
90 - BREWOPTS="-Duseithreads -Dusemorebits"
93 # this is the perl suse ships
94 - perl: 5.10.0_thr_dbg
97 - BREWOPTS="-DDEBUGGING -Duseithreads"
100 # CLEANTEST of minimum supported
104 - BREWOPTS="-Dusemorebits"
107 # Full Test of minimum supported with threads
111 - BREWOPTS="-Duseithreads"
113 - DBIC_TRACE_PROFILE=console
115 # Full Test of minimum supported without threads
121 - DBIC_TRACE_PROFILE=console_monochrome
124 # some permutations of tracing and envvar poisoning
126 - perl: 5.18.1_thr_mb
131 - DBIC_MULTICREATE_DEBUG=0
132 - BREWOPTS="-Duseithreads -Dusemorebits"
139 - DBIC_TRACE_PROFILE=console
146 - DBIC_TRACE_PROFILE=console
153 - DBIC_TRACE_PROFILE=console_monochrome
154 - DBIC_MULTICREATE_DEBUG=0
157 # Start of the allow_failures block
159 # old threaded with blead CPAN
160 - perl: devcpan_5.8.7_thr
163 - BREWOPTS="-Duseithreads"
167 # 5.10.0 threaded with blead CPAN
168 - perl: devcpan_5.10.0_thr_mb
171 - BREWOPTS="-Duseithreads -Dusemorebits"
175 # 5.12.2 with blead CPAN
176 - perl: devcpan_5.12.2_thr
179 - BREWOPTS="-Duseithreads"
183 # recentish threaded stable with blead CPAN
184 - perl: devcpan_5.18.1_thr_mb
187 - BREWOPTS="-Duseithreads -Dusemorebits"
191 # bleadperl with stock CPAN, full depchain test
197 # bleadperl with blead CPAN
198 - perl: devcpan_bleadperl_thr_mb
201 - BREWOPTS="-Duseithreads -Dusemorebits"
206 # which ones of the above can fail
208 # these run with various dev snapshots - allowed to fail
209 - perl: devcpan_5.8.7_thr
210 - perl: devcpan_5.10.0_thr_mb
211 - perl: devcpan_5.12.2_thr
212 - perl: devcpan_5.18.1_thr_mb
214 - perl: devcpan_bleadperl_thr_mb
217 # sourcing the files is *EXTREMELY* important - otherwise
218 # no envvars will survive
220 # the entire run times out after 50 minutes, or after 5 minutes without
224 # Sets global envvars, downloads/configures debs based on CLEANTEST
225 # Sets extra DBICTEST_* envvars
227 - source maint/travis-ci_scripts/10_before_install.bash
230 # Build and switch to a custom perl if requested
231 # Configure the perl env, preinstall some generic toolchain parts
233 - source maint/travis-ci_scripts/20_install.bash
236 # Preinstall/install deps based on envvars/CLEANTEST
238 - source maint/travis-ci_scripts/30_before_script.bash
243 - source maint/travis-ci_scripts/40_script.bash
246 # Check if we can assemble a dist properly if not in CLEANTEST
248 - source maint/travis-ci_scripts/50_after_success.bash
253 #- source maint/travis-ci_scripts/50_after_failure.bash
258 #- source maint/travis-ci_scripts/60_after_script.bash
260 # if we do not unset this before we terminate the travis teardown will
261 # mark the entire job as failed