silverstripe-textextraction/.travis.yml

53 lines
1.1 KiB
YAML
Raw Normal View History

2013-05-07 21:48:01 +02:00
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
2015-11-06 23:50:19 +01:00
language: php
2013-05-07 21:48:01 +02:00
php:
2015-11-06 23:50:19 +01:00
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
2013-05-07 21:48:01 +02:00
sudo: false
2013-05-07 21:48:01 +02:00
env:
2015-11-06 23:50:19 +01:00
- DB=MYSQL CORE_RELEASE=3.2
matrix:
include:
- php: 5.6
env: DB=PGSQL CORE_RELEASE=3
- php: 5.6
env: DB=PGSQL CORE_RELEASE=3.1
- php: 5.6
env: DB=PGSQL CORE_RELEASE=3.2
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.3
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.2
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.1
2013-05-07 21:48:01 +02:00
before_script:
2015-11-06 23:50:19 +01:00
- composer self-update || true
2015-02-25 02:44:03 +01:00
- mkdir -p $HOME/bin
- export PATH=$PATH:$HOME/bin
2015-02-25 02:44:03 +01:00
- export SS_TIKA_ENDPOINT="http://localhost:9998/"
- ./.travis/install_tika.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
2015-11-06 23:50:19 +01:00
- composer install
2013-05-07 21:48:01 +02:00
script:
2015-02-25 02:44:03 +01:00
- ($HOME/bin/tika-rest-server &) &> /dev/null
- vendor/bin/phpunit --verbose textextraction/tests/
2015-11-06 23:50:19 +01:00
branches:
only:
- master
matrix:
allow_failures:
- php: 7.0