forked from phpmyadmin/phpmyadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
21 lines (21 loc) · 734 Bytes
/
.travis.yml
File metadata and controls
21 lines (21 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: php
php:
- "5.5"
- "5.4"
- "5.3"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq ant
before_script:
- git clone git://github.com/zenovich/runkit.git && cd runkit && phpize && ./configure && make && make install && cd ..
- phpenv config-add test/travis.php.ini
- pear channel-discover pear.phpunit.de
- pear install phpunit/PHPUnit_Selenium
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev --no-interaction
script:
- ./scripts/generate-mo --quiet
- PHPUNIT_ARGS=--debug ant phpunit lint
- if [[ $TRAVIS_PULL_REQUEST != "false" ]] ; then ./scripts/check-dco origin/$TRAVIS_BRANCH..FETCH_HEAD ; fi
after_script:
- php vendor/bin/coveralls -v