EU::MM on < 5.8.9 got fixed
[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 language: perl
62
63 perl:
64   - "5.18"
65
66 env:
67   - CLEANTEST=false
68   - CLEANTEST=true
69
70 matrix:
71   include:
72     # minimum supported with threads
73     - perl: 5.8.5_thr
74       env:
75         - CLEANTEST=false
76         - BREWOPTS="-Duseithreads"
77         - BREWVER=5.8.5
78         - DBIC_TRACE_PROFILE=console
79
80     # minimum supported without threads
81     - perl: 5.8.3_nt
82       env:
83         - CLEANTEST=false
84         - BREWOPTS=""
85         - BREWVER=5.8.3
86         - DBIC_TRACE_PROFILE=console_monochrome
87
88     # check CLEANTEST of minimum supported
89     - perl: 5.8.3_nt_mb
90       env:
91         - CLEANTEST=true
92         - BREWOPTS="-Dusemorebits"
93         - BREWVER=5.8.3
94
95     # this is the perl suse ships
96     - perl: 5.10.0_thr_dbg
97       env:
98         - CLEANTEST=true
99         - BREWOPTS="-DDEBUGGING -Duseithreads"
100         - BREWVER=5.10.0
101
102     # this particular perl is quite widespread
103     - perl: 5.8.8_thr_mb
104       env:
105         - CLEANTEST=true
106         - BREWOPTS="-Duseithreads -Dusemorebits"
107         - BREWVER=5.8.8
108
109     # some permutations of tracing and envvar poisoning
110     - perl: 5.18.1_thr_mb
111       env:
112         - CLEANTEST=false
113         - POISON_ENV=true
114         - DBIC_TRACE=1
115         - DBIC_MULTICREATE_DEBUG=0
116         - BREWOPTS="-Duseithreads -Dusemorebits"
117         - BREWVER=5.18.1
118
119     - perl: 5.18
120       env:
121         - CLEANTEST=false
122         - POISON_ENV=true
123         - DBIC_TRACE_PROFILE=console
124
125     - perl: 5.18
126       env:
127         - CLEANTEST=true
128         - POISON_ENV=true
129         - DBIC_TRACE=1
130         - DBIC_TRACE_PROFILE=console
131
132     - perl: 5.18
133       env:
134         - CLEANTEST=false
135         - POISON_ENV=true
136         - DBIC_TRACE=1
137         - DBIC_TRACE_PROFILE=console_monochrome
138
139     ###
140     # Start of the allow_failures block
141
142     # recentish stable with blead CPAN
143     - perl: devcpan_5.18.1_thr_mb
144       env:
145         - CLEANTEST=false
146         - BREWOPTS="-Duseithreads -Dusemorebits"
147         - BREWVER=5.18.1
148         - DEVREL_DEPS=true
149
150     # bleadperl with stock CPAN
151     - perl: bleadperl_thr_mb
152       env:
153         - CLEANTEST=false
154         - BREWOPTS="-Duseithreads -Dusemorebits"
155         - BREWVER=blead
156
157     # bleadperl with blead CPAN
158     - perl: devcpan_bleadperl_thr_mb
159       env:
160         - CLEANTEST=false
161         - BREWOPTS="-Duseithreads -Dusemorebits"
162         - BREWVER=blead
163         - DEVREL_DEPS=true
164
165
166   # which ones of the above can fail
167   allow_failures:
168     - perl: devcpan_5.18.1_thr_mb
169     - perl: bleadperl_thr_mb
170     - perl: devcpan_bleadperl_thr_mb
171
172
173 # sourcing the files is *EXTREMELY* important - otherwise
174 # no envvars will survive
175
176 # the entire run times out after 50 minutes, or after 5 minutes without
177 # console output
178
179 before_install:
180   # Sets global envvars, downloads/configures debs based on CLEANTEST
181   # Sets extra DBICTEST_* envvars
182   #
183   - source maint/travis-ci_scripts/10_before_install.bash
184
185 install:
186   # Build and switch to a custom perl if requested
187   # Configure the perl env, preinstall some generic toolchain parts
188   #
189   - source maint/travis-ci_scripts/20_install.bash
190
191 before_script:
192   # Preinstall/install deps based on envvars/CLEANTEST
193   #
194   - source maint/travis-ci_scripts/30_before_script.bash
195
196 script:
197   # Run actual tests
198   #
199   - source maint/travis-ci_scripts/40_script.bash
200
201 after_success:
202   # Check if we can assemble a dist properly if not in CLEANTEST
203   #
204   - source maint/travis-ci_scripts/50_after_success.bash
205
206 after_failure:
207   # No tasks yet
208   #
209   #- source maint/travis-ci_scripts/50_after_failure.bash
210
211 after_script:
212   # No tasks yet
213   #
214   #- source maint/travis-ci_scripts/60_after_script.bash
215
216   # if we do not unset this before we terminate the travis teardown will
217   # mark the entire job as failed
218   - set +e