Throw away suboptimal travis CPANM env-option and tighten plans more
[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     - ribasushi@cpan.org
48     # Temporary - if it proves to be too noisy, we'll shut it off
49     - dbix-class-devel@lists.scsys.co.uk
50
51 language: perl
52
53 perl:
54   - "5.16"
55
56 env:
57   - CLEANTEST=false
58   - CLEANTEST=true
59
60 matrix:
61   include:
62     # minimum supported with threads
63     - perl: 5.8.5_thr
64       env:
65         - CLEANTEST=false
66         - BREWOPTS="-Duseithreads"
67         - BREWVER=5.8.5
68
69     # minimum supported without threads
70     - perl: 5.8.3_nt
71       env:
72         - CLEANTEST=false
73         - BREWOPTS=""
74         - BREWVER=5.8.3
75
76     # this is the perl suse ships
77     - perl: 5.10.0_thr_dbg
78       env:
79         - CLEANTEST=true
80         - BREWOPTS="-DDEBUGGING -Duseithreads"
81         - BREWVER=5.10.0
82
83     # this particular perl is quite widespread
84     - perl: 5.8.8_thr_mb
85       env:
86         - CLEANTEST=true
87         - BREWOPTS="-Duseithreads -Dusemorebits"
88         - BREWVER=5.8.8
89
90
91 before_install:
92   # Do not make this part of the env-matrix
93   # different boxes we run on have different amount of hw threads
94   # hence why we need to query
95   # result is 1.5 times the physical threads
96   - export NUMTHREADS=$(( ( $(cut -f 2 -d '-' /sys/devices/system/cpu/online) + 1 ) * 15 / 10  ))
97
98 install:
99   # Build and switch to a custom perl if requested
100   # Set the environment based on CLEANTEST
101   # Preinstall/install deps
102   #
103   # sourcing the file is *EXTREMELY* important - otherwise
104   # no envvars will survive
105   - source maint/travis-ci_prepare_env
106
107 script:
108   - export HARNESS_TIMER=1 HARNESS_OPTIONS=c:j$NUMTHREADS
109
110   # either a plain 'make test' OR a shuffled prove torture
111   # use the random order test plan unless CLEANTEST
112   # prepare_env may have short-circuited the test entirely
113   - test -n "$SHORT_CIRCUIT_SMOKE" || (test "$CLEANTEST" = "true" && make test || prove -lrswj$NUMTHREADS t xt)