Merge branch 'current/for_cpan_index' into current/dq
[dbsrgits/DBIx-Class.git] / .travis.yml
CommitLineData
d70070c9 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#
6d2b5c14 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
d70070c9 20#
6d2b5c14 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
d70070c9 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
b58ecb01 28# functionality is moved to scripts. More about the problem (and the
d70070c9 29# WONTFIX "explanation") here: https://github.com/travis-ci/travis-ci/issues/497
30#
31
d0b79c51 32#
a0acdea0 33# Smoke all branches except for blocked* and wip/*
d0b79c51 34#
a0acdea0 35# Additionally master does not smoke with bleadperl
36# ( implemented in maint/travis-ci_scripts/10_before_install.bash )
d0b79c51 37#
d70070c9 38branches:
a0acdea0 39 except:
40 - /^wip\//
41 - /^blocked/
d70070c9 42
43notifications:
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:
2af1c37d 54 recipients:
55 - ribasushi@cpan.org
56 # Temporary - if it proves to be too noisy, we'll shut it off
ee896495 57 #- dbix-class-devel@lists.scsys.co.uk
2af1c37d 58 on_success: change
4ac234b5 59 on_failure: always
d70070c9 60
003e97c5 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
915876d7 68language: perl
d70070c9 69
915876d7 70perl:
e83a258e 71 - "5.18"
915876d7 72
d70070c9 73env:
74 - CLEANTEST=false
13ab0b9f 75 - CLEANTEST=true
dea888a6 76
d70070c9 77matrix:
67cd6403 78 fast_finish: true
d70070c9 79 include:
13ab0b9f 80 # this particular perl is quite widespread
81 - perl: 5.8.8_thr_mb
82 env:
83 - CLEANTEST=true
84 - BREWOPTS="-Duseithreads -Dusemorebits"
85 - BREWVER=5.8.8
86
87 # so is this one (test a sane CPAN.pm)
88 - perl: 5.12.4_thr_mb
89 env:
90 - CLEANTEST=true
91 - BREWOPTS="-Duseithreads -Dusemorebits"
92 - BREWVER=5.12.4
93
94 # this is the perl suse ships
95 - perl: 5.10.0_thr_dbg
96 env:
97 - CLEANTEST=true
98 - BREWOPTS="-DDEBUGGING -Duseithreads"
99 - BREWVER=5.10.0
100
101 # CLEANTEST of minimum supported
102 - perl: 5.8.3_nt_mb
103 env:
104 - CLEANTEST=true
105 - BREWOPTS="-Dusemorebits"
106 - BREWVER=5.8.3
107
ced296a8 108 # Full Test of minimum supported with threads
109 - perl: 5.8.5_thr
110 env:
111 - CLEANTEST=false
112 - BREWOPTS="-Duseithreads"
113 - BREWVER=5.8.5
114 - DBIC_TRACE_PROFILE=console
115
13ab0b9f 116 # Full Test of minimum supported without threads
117 - perl: 5.8.3_nt
118 env:
119 - CLEANTEST=false
120 - BREWOPTS=""
121 - BREWVER=5.8.3
122 - DBIC_TRACE_PROFILE=console_monochrome
123
ced296a8 124 ###
eed5492f 125 # some permutations of tracing and envvar poisoning
ced296a8 126
bb16343b 127 - perl: 5.16.2_thr_mb
7c1a09fc 128 env:
129 - CLEANTEST=false
130 - POISON_ENV=true
131 - DBIC_TRACE=1
132 - DBIC_MULTICREATE_DEBUG=0
133 - BREWOPTS="-Duseithreads -Dusemorebits"
bb16343b 134 - BREWVER=5.16.2
7c1a09fc 135
e83a258e 136 - perl: 5.18
eba59b7e 137 env:
138 - CLEANTEST=false
eed5492f 139 - POISON_ENV=true
7c1a09fc 140 - DBIC_TRACE_PROFILE=console
eba59b7e 141
f2f65c95 142 - perl: 5.8
eba59b7e 143 env:
144 - CLEANTEST=true
eed5492f 145 - POISON_ENV=true
eba59b7e 146 - DBIC_TRACE=1
147 - DBIC_TRACE_PROFILE=console
148
e83a258e 149 - perl: 5.18
eba59b7e 150 env:
151 - CLEANTEST=false
eed5492f 152 - POISON_ENV=true
eba59b7e 153 - DBIC_TRACE=1
154 - DBIC_TRACE_PROFILE=console_monochrome
155
13ab0b9f 156 ###
157 # Start of the allow_failures block
158
21302b46 159 # old threaded with blead CPAN
160 - perl: devcpan_5.8.7_thr
13ab0b9f 161 env:
dd5de10a 162 - CLEANTEST=true
163 - BREWOPTS="-Duseithreads"
21302b46 164 - BREWVER=5.8.7
dd5de10a 165 - DEVREL_DEPS=true
166
e6b373aa 167 # 5.10.0 threaded with blead CPAN
168 - perl: devcpan_5.10.0_thr_mb
169 env:
170 - CLEANTEST=true
13ab0b9f 171 - BREWOPTS="-Duseithreads -Dusemorebits"
e6b373aa 172 - BREWVER=5.10.0
13ab0b9f 173 - DEVREL_DEPS=true
174
dd5de10a 175 # 5.12.2 with blead CPAN
176 - perl: devcpan_5.12.2_thr
e6b373aa 177 env:
178 - CLEANTEST=true
179 - BREWOPTS="-Duseithreads"
dd5de10a 180 - BREWVER=5.12.2
e6b373aa 181 - DEVREL_DEPS=true
182
dd5de10a 183 # recentish threaded stable with blead CPAN
bb16343b 184 - perl: devcpan_5.18.2_thr_mb
13ab0b9f 185 env:
186 - CLEANTEST=false
187 - BREWOPTS="-Duseithreads -Dusemorebits"
bb16343b 188 - BREWVER=5.18.2
2f51deb1 189 - DEVREL_DEPS=true
190
c47de5de 191 # bleadperl with stock CPAN, full depchain test
192 - perl: bleadperl
261141ce 193 env:
c47de5de 194 - CLEANTEST=true
13ab0b9f 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
13ab0b9f 209 # these run with various dev snapshots - allowed to fail
21302b46 210 - perl: devcpan_5.8.7_thr
dd5de10a 211 - perl: devcpan_5.10.0_thr_mb
212 - perl: devcpan_5.12.2_thr
bb16343b 213 - perl: devcpan_5.18.2_thr_mb
c47de5de 214 - perl: bleadperl
13ab0b9f 215 - perl: devcpan_bleadperl_thr_mb
216
217
b58ecb01 218# sourcing the files is *EXTREMELY* important - otherwise
219# no envvars will survive
220
5cbe5b12 221# the entire run times out after 50 minutes, or after 5 minutes without
222# console output
b58ecb01 223
d70070c9 224before_install:
b58ecb01 225 # Sets global envvars, downloads/configures debs based on CLEANTEST
226 # Sets extra DBICTEST_* envvars
227 #
b58ecb01 228 - source maint/travis-ci_scripts/10_before_install.bash
d70070c9 229
230install:
231 # Build and switch to a custom perl if requested
b58ecb01 232 # Configure the perl env, preinstall some generic toolchain parts
233 #
b58ecb01 234 - source maint/travis-ci_scripts/20_install.bash
d70070c9 235
b58ecb01 236before_script:
237 # Preinstall/install deps based on envvars/CLEANTEST
238 #
b58ecb01 239 - source maint/travis-ci_scripts/30_before_script.bash
c299fd65 240
b58ecb01 241script:
242 # Run actual tests
243 #
b58ecb01 244 - source maint/travis-ci_scripts/40_script.bash
c87d30a7 245
246after_success:
b58ecb01 247 # Check if we can assemble a dist properly if not in CLEANTEST
248 #
b58ecb01 249 - source maint/travis-ci_scripts/50_after_success.bash
250
251after_failure:
252 # No tasks yet
253 #
b58ecb01 254 #- source maint/travis-ci_scripts/50_after_failure.bash
255
256after_script:
257 # No tasks yet
258 #
b58ecb01 259 #- source maint/travis-ci_scripts/60_after_script.bash
5e99a71a 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