-
Notifications
You must be signed in to change notification settings - Fork 29
/
.travis.yml
38 lines (38 loc) · 1.07 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
language: perl
perl:
- "5.5.3" # very ancient
- "5.6.2" # ancient
- "5.8.8" # common, prebuilt version
- "5.8.8-thr" # various build flags
- "5.8.8-mb"
- "5.8.8-dbg"
- "5.8.8@moo" # with local::lib
- "5.17" # older dev version
- "5.17.11" # will never be prebuilt
- "5.18" # existing perl version
- 5.20 # work around lack of quoting
- 5.30 # post-5.26 so no "." in @INC
- dev
matrix:
include:
- perl: "blead"
env: VERBOSE=1
before_install:
- source ./init
- build-perl
- perl -V
install: ["true"] # giving empty array still does default steps, this replaces
script:
- prove -v
- cpan-install git://github.com/travis-perl/TravisCI-Helpers-InstallerTest.git
- perl -MTravisCI::Helpers::InstallerTest=master
- cpan-install git://github.com/travis-perl/TravisCI-Helpers-InstallerTest.git@another-branch
- perl -MTravisCI::Helpers::InstallerTest=another-branch
- cpan-install Test::Spelling
- which aspell
branches:
except:
- /^wip\//
- /^blocked/
notifications:
email: false