gluon-web-remote

Web remote Administration for big size of gluon routers
git clone git://archive.git.mtrnord.blog/MTRNord/gluon-web-remote.git
Log | Files | Refs | README

.travis.yml (502B)


      1 language: php
      2 
      3 php:
      4   - 5.3.3
      5   - 5.3
      6   - 5.4
      7   - 5.5
      8   - 5.6
      9   - 7.0
     10   - hhvm
     11 
     12 matrix:
     13   allow_failures:
     14     - php: hhvm
     15 
     16 sudo: false
     17 
     18 before_install:
     19   - composer self-update
     20 
     21 install:
     22   - travis_retry composer install --no-interaction --prefer-source
     23 
     24 script:
     25   - ./vendor/bin/phpunit --configuration ./build/phpunit.xml
     26 
     27 notifications:
     28   email: false
     29   webhooks:
     30     urls:
     31       - https://webhooks.gitter.im/e/6668f52f3dd4e3f81960
     32     on_success: always
     33     on_failure: always
     34     on_start: false
     35