Disable travis list notifications until things stabilize
[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]. In
13 # the first case we test with minimal deps available, and skip everything
14 # listed in DBIC::OptDesps. Without CLEANTEST we bring the armada of RDBMS
15 # and install the maximum possible set of deps and configs
16 #
17 # * All builds/tests run under NUMTHREADS number of threads.
18 #
19 # * The way .travis.yml is fed to the command controller is idiotic - it
20 # makes using multiline `bash -c` statements impossible. Therefore to
21 # aid readability (our travis logic is rather complex), the bulk of
22 # functionality is moved to a script. More about the problem (and the
23 # WONTFIX "explanation") here: https://github.com/travis-ci/travis-ci/issues/497
24 #
25
26 # Smoke only specific branches to a) not overload the queue and b) not
27 # overspam the notification channels
28 # Furthermore if the branch is ^topic/ - the custom compiled smokes will
29 # not run at all, again in order to conserve queue resources
30 branches:
31   only:
32     - master
33     - /^smoke\//
34     - /^topic\//
35
36 notifications:
37   irc:
38     channels:
39       - "irc.perl.org#dbic-smoke"
40     template:
41       - "%{branch}#%{build_number} by %{author}: %{message} (%{build_url})"
42     on_success: change
43     on_failure: always
44     use_notice: true
45
46   email:
47     recipients:
48       - ribasushi@cpan.org
49       # Temporary - if it proves to be too noisy, we'll shut it off
50       #- dbix-class-devel@lists.scsys.co.uk
51     on_success: change
52     on_failure: change
53
54 language: perl
55
56 perl:
57   - "5.16"
58
59 env:
60   - CLEANTEST=false
61   - CLEANTEST=true
62
63 matrix:
64   include:
65     # minimum supported with threads
66     - perl: 5.8.5_thr
67       env:
68         - CLEANTEST=false
69         - BREWOPTS="-Duseithreads"
70         - BREWVER=5.8.5
71
72     # minimum supported without threads
73     - perl: 5.8.3_nt
74       env:
75         - CLEANTEST=false
76         - BREWOPTS=""
77         - BREWVER=5.8.3
78
79     # this is the perl suse ships
80     - perl: 5.10.0_thr_dbg
81       env:
82         - CLEANTEST=true
83         - BREWOPTS="-DDEBUGGING -Duseithreads"
84         - BREWVER=5.10.0
85
86     # this particular perl is quite widespread
87     - perl: 5.8.8_thr_mb
88       env:
89         - CLEANTEST=true
90         - BREWOPTS="-Duseithreads -Dusemorebits"
91         - BREWVER=5.8.8
92
93 before_install:
94   # Do not make this part of the env-matrix
95   # different boxes we run on have different amount of hw threads
96   # hence why we need to query
97   # result is 1.5 times the physical threads
98   - export NUMTHREADS=$(( ( $(cut -f 2 -d '-' /sys/devices/system/cpu/online) + 1 ) * 15 / 10  ))
99
100 install:
101   # Build and switch to a custom perl if requested
102   # Set the environment based on CLEANTEST
103   # Preinstall/install deps
104   #
105   # sourcing the file is *EXTREMELY* important - otherwise
106   # no envvars will survive
107   - source maint/travis-ci_prepare_env
108
109 script:
110   - export HARNESS_TIMER=1 HARNESS_OPTIONS=c:j$NUMTHREADS
111
112   # either a plain 'make test' OR a shuffled prove torture
113   # use the random order test plan unless CLEANTEST
114   # prepare_env may have short-circuited the test entirely
115   - test -n "$SHORT_CIRCUIT_SMOKE" || (test "$CLEANTEST" = "true" && make test || prove -lrswj$NUMTHREADS t xt)