make 54taint.t actually test the DBIx::Class in lib/
[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
915876d7 61language: perl
d70070c9 62
915876d7 63perl:
e83a258e 64 - "5.18"
915876d7 65
d70070c9 66env:
67 - CLEANTEST=false
dea888a6 68
d70070c9 69matrix:
70 include:
ced296a8 71 # Full Test of minimum supported with threads
72 - perl: 5.8.5_thr
73 env:
74 - CLEANTEST=false
75 - BREWOPTS="-Duseithreads"
76 - BREWVER=5.8.5
77 - DBIC_TRACE_PROFILE=console
78
ced296a8 79 ###
eed5492f 80 # some permutations of tracing and envvar poisoning
ced296a8 81
7c1a09fc 82 - perl: 5.18.1_thr_mb
83 env:
84 - CLEANTEST=false
85 - POISON_ENV=true
86 - DBIC_TRACE=1
87 - DBIC_MULTICREATE_DEBUG=0
88 - BREWOPTS="-Duseithreads -Dusemorebits"
89 - BREWVER=5.18.1
90
e83a258e 91 - perl: 5.18
eba59b7e 92 env:
93 - CLEANTEST=false
eed5492f 94 - POISON_ENV=true
7c1a09fc 95 - DBIC_TRACE_PROFILE=console
eba59b7e 96
e83a258e 97 - perl: 5.18
eba59b7e 98 env:
99 - CLEANTEST=true
eed5492f 100 - POISON_ENV=true
eba59b7e 101 - DBIC_TRACE=1
102 - DBIC_TRACE_PROFILE=console
103
e83a258e 104 - perl: 5.18
eba59b7e 105 env:
106 - CLEANTEST=false
eed5492f 107 - POISON_ENV=true
eba59b7e 108 - DBIC_TRACE=1
109 - DBIC_TRACE_PROFILE=console_monochrome
110
b58ecb01 111# sourcing the files is *EXTREMELY* important - otherwise
112# no envvars will survive
113
5cbe5b12 114# the entire run times out after 50 minutes, or after 5 minutes without
115# console output
b58ecb01 116
d70070c9 117before_install:
b58ecb01 118 # Sets global envvars, downloads/configures debs based on CLEANTEST
119 # Sets extra DBICTEST_* envvars
120 #
b58ecb01 121 - source maint/travis-ci_scripts/10_before_install.bash
d70070c9 122
123install:
124 # Build and switch to a custom perl if requested
b58ecb01 125 # Configure the perl env, preinstall some generic toolchain parts
126 #
b58ecb01 127 - source maint/travis-ci_scripts/20_install.bash
d70070c9 128
b58ecb01 129before_script:
130 # Preinstall/install deps based on envvars/CLEANTEST
131 #
b58ecb01 132 - source maint/travis-ci_scripts/30_before_script.bash
c299fd65 133
b58ecb01 134script:
135 # Run actual tests
136 #
b58ecb01 137 - source maint/travis-ci_scripts/40_script.bash
c87d30a7 138
139after_success:
b58ecb01 140 # Check if we can assemble a dist properly if not in CLEANTEST
141 #
b58ecb01 142 - source maint/travis-ci_scripts/50_after_success.bash
143
144after_failure:
145 # No tasks yet
146 #
b58ecb01 147 #- source maint/travis-ci_scripts/50_after_failure.bash
148
149after_script:
150 # No tasks yet
151 #
b58ecb01 152 #- source maint/travis-ci_scripts/60_after_script.bash
5e99a71a 153
154 # if we do not unset this before we terminate the travis teardown will
155 # mark the entire job as failed
156 - set +e