2013-05-07 21:48:01 +02:00
|
|
|
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
|
|
|
|
|
|
|
|
language: php
|
2015-02-18 03:31:38 +01:00
|
|
|
php:
|
|
|
|
- 5.4
|
2013-05-07 21:48:01 +02:00
|
|
|
|
|
|
|
env:
|
2015-02-18 03:31:38 +01:00
|
|
|
- DB=MYSQL CORE_RELEASE=3.1
|
|
|
|
- DB=MYSQL CORE_RELEASE=3
|
2013-05-07 21:48:01 +02:00
|
|
|
|
|
|
|
before_script:
|
2015-02-25 02:44:03 +01:00
|
|
|
- mkdir -p $HOME/bin
|
2015-02-18 03:31:38 +01:00
|
|
|
- export PATH=$PATH:$HOME/bin
|
2015-02-25 02:44:03 +01:00
|
|
|
- export SS_TIKA_ENDPOINT="http://localhost:9998/"
|
2015-02-18 03:31:38 +01:00
|
|
|
- ./.travis/install_tika.sh
|
|
|
|
- sudo ./.travis/install_pdftotext.sh
|
|
|
|
- git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support
|
|
|
|
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
|
|
|
|
- cd ~/builds/ss
|
2013-05-07 21:48:01 +02:00
|
|
|
|
2015-02-18 03:31:38 +01:00
|
|
|
script:
|
2015-02-25 02:44:03 +01:00
|
|
|
- ($HOME/bin/tika-rest-server &) &> /dev/null
|
2015-02-18 03:31:38 +01:00
|
|
|
- vendor/bin/phpunit --verbose textextraction/tests/
|