root / .travis.yml @ 4d8456af
Historique | Voir | Annoter | Télécharger (2,14 ko)
| 1 |
---
|
|---|---|
| 2 |
dist: bionic |
| 3 |
addons:
|
| 4 |
apt:
|
| 5 |
packages:
|
| 6 |
- codespell
|
| 7 |
- devscripts
|
| 8 |
- python
|
| 9 |
- python-flake8
|
| 10 |
- python3
|
| 11 |
- python3-flake8
|
| 12 |
- ruby
|
| 13 |
- php-cli
|
| 14 |
- gawk
|
| 15 |
- ksh
|
| 16 |
- zsh
|
| 17 |
- pylint
|
| 18 |
- shellcheck
|
| 19 |
- pkg-config
|
| 20 |
- libdb-dev
|
| 21 |
- libvirt-dev
|
| 22 |
- libexpat-dev
|
| 23 |
|
| 24 |
# Munin/Plugin.pm is in "munin-node" on precise
|
| 25 |
- munin-node
|
| 26 |
|
| 27 |
# Modules used by test script
|
| 28 |
- libsys-virt-perl
|
| 29 |
- libcapture-tiny-perl
|
| 30 |
|
| 31 |
# Modules used by plugins
|
| 32 |
- libberkeleydb-perl
|
| 33 |
- libcache-memcached-perl
|
| 34 |
- libgraphics-colornames-www-perl
|
| 35 |
- libdbd-pg-perl
|
| 36 |
- libdata-dump-perl
|
| 37 |
- libdate-manip-perl
|
| 38 |
- libdatetime-format-iso8601-perl
|
| 39 |
- libdevice-serialport-perl
|
| 40 |
- libfile-readbackwards-perl
|
| 41 |
- libgraphics-colorobject-perl
|
| 42 |
- libipc-run3-perl
|
| 43 |
- libipc-sharelite-perl
|
| 44 |
- libjson-perl
|
| 45 |
- libjson-any-perl
|
| 46 |
- libmail-sendmail-perl
|
| 47 |
- libmodern-perl-perl
|
| 48 |
- libmoosex-poe-perl
|
| 49 |
- libnet-dns-perl
|
| 50 |
- libnet-openssh-perl
|
| 51 |
- libnet-snmp-perl
|
| 52 |
- libnet-telnet-perl
|
| 53 |
- libnet-telnet-cisco-perl
|
| 54 |
- libpoe-perl
|
| 55 |
- libpoe-component-irc-perl
|
| 56 |
- libproc-processtable-perl
|
| 57 |
- libredis-perl
|
| 58 |
- libswitch-perl
|
| 59 |
- libtext-iconv-perl
|
| 60 |
- libwww-mechanize-perl
|
| 61 |
- libwww-mechanize-treebuilder-perl
|
| 62 |
- libyaml-perl
|
| 63 |
- libxml-libxml-perl
|
| 64 |
- libxml-simple-perl
|
| 65 |
- libxml-smart-perl
|
| 66 |
- libxml-twig-perl
|
| 67 |
- libexperimental-perl
|
| 68 |
|
| 69 |
before_install:
|
| 70 |
- cpanm --local-lib=~/perl5 local::lib && eval $(perl -I ~/perl5/lib/perl5/ -Mlocal::lib)
|
| 71 |
- cpanm --notest File::Find
|
| 72 |
- cpanm --notest Test::More
|
| 73 |
# more Modules used by plugins
|
| 74 |
- cpanm --notest Asterisk::AMI
|
| 75 |
- cpanm --notest Date::Parse
|
| 76 |
- cpanm --notest FCGI::Client
|
| 77 |
- cpanm --notest POE::Component::IRC
|
| 78 |
- cpanm --notest POE::Quickie
|
| 79 |
# Modules used bu plugins, but not compiling from CPAN
|
| 80 |
# - cpanm --notest nvidia::ml
|
| 81 |
# Modules used by plugins, but missing on cpan
|
| 82 |
# - File::Tail::Multi
|
| 83 |
# - Sun::Solaris::Kstat
|
| 84 |
# - VMware::VIRuntime
|
| 85 |
# - MythTV
|
| 86 |
|
| 87 |
script:
|
| 88 |
- make lint
|
| 89 |
- prove
|
