12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- language: php
- sudo: false
- php:
- - 5.5
- - 5.6
- - 7
- - hhvm
- matrix:
- allow_failures:
-
-
- - php: hhvm
-
- fast_finish: true
- mysql:
- database: entity
- username: root
- encoding: utf8
- before_script:
-
-
-
- - phpenv config-rm xdebug.ini || true
-
-
- - TESTDIR=$(pwd)
-
-
- - cd ..
-
- - mysql -e 'create database entity'
-
- - export SIMPLETEST_DB=mysql://root:@127.0.0.1/entity
-
- - travis_retry git clone --branch 8.5.x --depth 1 http://git.drupal.org/project/drupal.git
- - cd drupal
- - composer self-update
- - composer install -n
-
- - ln -s $TESTDIR modules/entity
-
-
- - nohup php -S localhost:8888 > /dev/null 2>&1 &
-
- - export SIMPLETEST_BASE_URL=http://localhost:8888
- script:
-
- - ./vendor/phpunit/phpunit/phpunit -c ./core/phpunit.xml.dist --verbose ./modules/entity
|