Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.travis.yml - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e523f7ce28e57a80b99414e678eb232fa5c99344 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
  - curl -s http://getcomposer.org/installer | php
  - php composer.phar install --dev --no-interaction
script:
  - ./scripts/generate-mo --quiet
  - 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