File: .travis.yml

package info (click to toggle)
libmoosex-meta-typeconstraint-mooish-perl 0.001-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 248 kB
  • ctags: 3
  • sloc: perl: 95; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 456 bytes parent folder | download | duplicates (8)
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
language: perl
perl:
   - "5.8"
   - "5.10"
   - "5.12"
   - "5.14"
   - "5.16"
   - "5.18"

matrix:
   allow_failures:
      - perl: "5.8"

before_install:
   # git bits sometimes needed...
   - git config user.name 'Travis-CI'
   - git config user.email 'travis@nowhere.dne'

install:
   # not so much install our package as all its prereqs
   - cpanm --installdeps . || { cat ~/.cpanm/build.log ; false ; }

script:
   - perl Makefile.PL
   - make test