Files
netdisco/.travis.yml
nick n 47adf30cc4 install graphviz package
GraphViz requires the dot binary which should come with the graphviz operating system package

this should hopefully fix
! Configure failed for GraphViz-2.24. See /home/travis/.cpanm/work/1553436397.11520/build.log for details.
2019-03-24 15:31:57 +01:00

32 lines
732 B
YAML

language: perl
addons:
apt:
packages:
- libsnmp-dev
- phantomjs
- graphviz
hosts:
- localhost
branches:
only:
- /^2\.\d{6}$/
- 'master'
install:
- cpanm --quiet --notest PkgConfig Test::CChecker Alien::zlib::Static Alien::OpenSSL::Static Alien::SNMP
script: |
perl Build.PL && \
./Build && \
PERL_MM_USE_DEFAULT=1 ./Build installdeps --cpan_client 'cpanm --quiet --notest' && \
ND_PHANTOMJS=/usr/bin/phantomjs ./Build test --test_files xt/
notifications:
irc:
on_success: always
on_failure: always
channels:
- 'chat.freenode.net#netdisco'
email:
on_success: always
on_failure: always
recipients:
- 'netdisco-ng-commit@lists.sourceforge.net'