Revert workarounds for $@ broken during 5.13.x - mainly 1f870d5a
[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 only specific branches to a) not overload the queue and b) not
34 # overspam the notification channels
35 #
36 # Furthermore if the branch is ^topic/ - the custom compiled smokes will
37 # not run at all, again in order to conserve queue resources
38 #
39 # Additionally bleadperl tests do not run on master (but do run on smoke/*)
40 #
41 branches:
42   only:
43     - master
44     - /^smoke\//
45     - /^topic\//
46
47 notifications:
48   irc:
49     channels:
50       - "irc.perl.org#dbic-smoke"
51     template:
52       - "%{branch}#%{build_number} by %{author}: %{message} (%{build_url})"
53     on_success: change
54     on_failure: always
55     use_notice: true
56
57   email:
58     recipients:
59       - ribasushi@cpan.org
60       # Temporary - if it proves to be too noisy, we'll shut it off
61       #- dbix-class-devel@lists.scsys.co.uk
62     on_success: change
63     on_failure: change
64
65 language: perl
66
67 perl:
68   - "5.16"
69
70 env:
71   - CLEANTEST=false
72   - CLEANTEST=true
73
74 matrix:
75   include:
76     # bleadperl
77     - perl: bleadperl_thr_mb
78       env:
79         - CLEANTEST=false
80         - BREWOPTS="-Duseithreads -Dusemorebits"
81         - BREWVER=blead
82
83     # minimum supported with threads
84     - perl: 5.8.5_thr
85       env:
86         - CLEANTEST=false
87         - BREWOPTS="-Duseithreads"
88         - BREWVER=5.8.5
89
90     # minimum supported without threads
91     - perl: 5.8.3_nt
92       env:
93         - CLEANTEST=false
94         - BREWOPTS=""
95         - BREWVER=5.8.3
96
97     # check CLEANTEST of minimum supported
98     - perl: 5.8.3_nt_mb
99       env:
100         - CLEANTEST=true
101         - BREWOPTS="-Dusemorebits"
102         - BREWVER=5.8.3
103
104     # this is the perl suse ships
105     - perl: 5.10.0_thr_dbg
106       env:
107         - CLEANTEST=true
108         - BREWOPTS="-DDEBUGGING -Duseithreads"
109         - BREWVER=5.10.0
110
111     # this particular perl is quite widespread
112     - perl: 5.8.8_thr_mb
113       env:
114         - CLEANTEST=true
115         - BREWOPTS="-Duseithreads -Dusemorebits"
116         - BREWVER=5.8.8
117
118 # sourcing the files is *EXTREMELY* important - otherwise
119 # no envvars will survive
120
121 # timeouts below taken from the base and overrides:
122 # https://github.com/travis-ci/travis-worker/blob/master/lib/travis/worker/config.rb#L32
123 # https://github.com/travis-ci/travis-worker/blob/master/config/worker.php.yml
124
125 before_install:
126   # Sets global envvars, downloads/configures debs based on CLEANTEST
127   # Sets extra DBICTEST_* envvars
128   #
129   # TIMEOUT: 900s
130   #
131   - source maint/travis-ci_scripts/10_before_install.bash
132
133 install:
134   # Build and switch to a custom perl if requested
135   # Configure the perl env, preinstall some generic toolchain parts
136   #
137   # TIMEOUT: 900s
138   #
139   - source maint/travis-ci_scripts/20_install.bash
140
141 before_script:
142   # Preinstall/install deps based on envvars/CLEANTEST
143   #
144   # TIMEOUT: 900s
145   #
146   - source maint/travis-ci_scripts/30_before_script.bash
147
148 script:
149   # Run actual tests
150   #
151   # TIMEOUT: 2100s
152   #
153   - source maint/travis-ci_scripts/40_script.bash
154
155 after_success:
156   # Check if we can assemble a dist properly if not in CLEANTEST
157   #
158   # TIMEOUT: 300s
159   #
160   - source maint/travis-ci_scripts/50_after_success.bash
161
162 after_failure:
163   # No tasks yet
164   #
165   # TIMEOUT: 300s
166   #
167   #- source maint/travis-ci_scripts/50_after_failure.bash
168
169 after_script:
170   # No tasks yet
171   #
172   # TIMEOUT: 300s
173   #
174   #- source maint/travis-ci_scripts/60_after_script.bash