mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Processor Tests! * Capture data from live devices easily. * fix up some stuff, remove powerconnect things as they seem to be just broken. * formatting, fix missing assignment add netonix processor data * fix multi-line, always add sysDescr and sysObjectID ios cpm test file * revert composer change and fix whitespace issues * add help text * missed help text * tighter debug output * handle empty strings properly and mibs with numbers * use keys for sorting as intended * fix type with empty data * oops :) * whitespace fix * try installing fping * Fix TestCase collision + cleanup * mark TestCase as abstract don't run two instances of snmpsim * better database dumps, improved capture * style fixes * fix quotes add a few more tables * add --prefer-new, properly merge data * Support separate discovery and poller data. But don't waste space if they aren't needed. * refactor to use class collects all code in one place for reusability * reorganize * Print out when not saving. * Support for running multiple (or all) modules at once. * tidy * Change unit test to a generic name and test all modules we have data for. * Add documentation and a few more tidies * whitespace fixes * Fix tests, add a couple more modules, more docs * More docs updates * Fix scrutinizer issues * add bgp-peers
59 lines
1.4 KiB
YAML
59 lines
1.4 KiB
YAML
sudo: required
|
|
language: php
|
|
services:
|
|
- mysql
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- php: 7.1
|
|
env: EXECUTE_BUILD_SCHEMA=true
|
|
- php: 7.0
|
|
env: SKIP_STYLE_CHECK=1
|
|
- php: 5.3
|
|
sudo: required
|
|
dist: precise
|
|
env: SKIP_STYLE_CHECK=1
|
|
- php: 5.4
|
|
env: SKIP_STYLE_CHECK=1
|
|
- php: 5.5
|
|
env: SKIP_STYLE_CHECK=1
|
|
- php: 5.6
|
|
env: SKIP_STYLE_CHECK=1 EXECUTE_BUILD_DOCS=true
|
|
# - php: hhvm
|
|
# env: SKIP_STYLE_CHECK=1
|
|
|
|
allow_failures:
|
|
- php: hhvm
|
|
|
|
cache:
|
|
directories:
|
|
- vendor
|
|
- $HOME/.cache/pip
|
|
- $HOME/.composer/cache
|
|
|
|
before_install:
|
|
- sudo apt-get -qq update
|
|
- sudo apt-get install -y snmp fping
|
|
- mysql -e 'CREATE DATABASE librenms_phpunit_78hunjuybybh;'
|
|
|
|
install:
|
|
- composer install --prefer-dist --no-interaction
|
|
- pip install --user pyasn1==0.2.2
|
|
- pip install --user snmpsim==0.3.1
|
|
- pip install --user pylint
|
|
- pip install --user mysql-python
|
|
|
|
after_success:
|
|
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && test $EXECUTE_BUILD_SCHEMA == "true" && bash scripts/deploy-schema.sh
|
|
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && test $EXECUTE_BUILD_DOCS == "true" && bash scripts/deploy-docs.sh
|
|
|
|
after_failure:
|
|
- cat /tmp/snmpsimd.log
|
|
|
|
script:
|
|
- php scripts/pre-commit.php -l
|
|
- php scripts/pre-commit.php -s
|
|
- SNMPSIM=1 DBTEST=1 vendor/bin/phpunit --stop-on-failure
|
|
- bash -n daily.sh
|
|
- pylint -E poller-wrapper.py discovery-wrapper.py
|