rpicms

A CMS for the Raspberry Pi
git clone git://archive.git.mtrnord.blog/RpicmsTeam/rpicms.git
Log | Files | Refs | README | LICENSE

.travis.yml (398B)


      1 language: php
      2 
      3 php:
      4   - 5.3
      5   - 5.4
      6   - 5.5
      7   - 5.6
      8   - hhvm
      9 
     10 before_script:
     11   - curl --version
     12   - pecl install uri_template-beta || echo "pecl uri_template not available"
     13   - composer self-update
     14   - composer install --no-interaction --prefer-source --dev
     15   - ~/.nvm/nvm.sh install v0.6.14
     16 
     17 script: vendor/bin/phpunit
     18 
     19 matrix:
     20   allow_failures:
     21     - php: 5.6
     22     - php: hhvm
     23   fast_finish: true