16 lines
315 B
YAML
16 lines
315 B
YAML
language: php
|
|
|
|
before_script:
|
|
- sudo apt-get update
|
|
- sudo easy_install sphinx
|
|
- sudo apt-get install -y ffmpeg libavcodec-extra-53
|
|
- curl -s http://getcomposer.org/installer | php
|
|
- php composer.phar install --dev
|
|
|
|
php:
|
|
- 5.3
|
|
- 5.4
|
|
|
|
script:
|
|
- phpunit
|
|
- sh -c "cd docs && make clean && make html"
|