silverstripe-textextraction/.travis.yml

54 lines
1.3 KiB
YAML
Raw Permalink Normal View History

2015-11-06 23:50:19 +01:00
language: php
2013-05-07 21:48:01 +02:00
dist: xenial
services:
- mysql
- postgresql
2019-08-28 00:56:33 +02:00
addons:
apt:
packages:
- poppler-utils
env:
global:
- COMPOSER_ROOT_VERSION=3.x-dev
- SS_TIKA_ENDPOINT="http://localhost:9998/"
2015-11-06 23:50:19 +01:00
matrix:
include:
- php: 7.1
env: DB=MYSQL PHPUNIT_TEST=1
- php: 7.1
env: DB=PGSQL PHPUNIT_TEST=1
- php: 7.2
env: DB=MYSQL PHPUNIT_TEST=1 PHPCS_TEST=1
- php: 7.3
env: DB=MYSQL PHPUNIT_COVERAGE_TEST=1
2013-05-07 21:48:01 +02:00
before_script:
# Init PHP
- phpenv rehash
- phpenv config-rm xdebug.ini
# Configure Tika bin
2015-02-25 02:44:03 +01:00
- mkdir -p $HOME/bin
- export PATH=$PATH:$HOME/bin
- ./.travis/install_tika.sh
- ($HOME/bin/tika-rest-server &) &> /dev/null
# Install composer dependencies
- composer validate
- composer require --no-update silverstripe/recipe-cms:^4
- if [[ $DB == PGSQL ]]; then composer require --no-update silverstripe/postgresql:^2; fi
- composer install --prefer-source --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
2013-05-07 21:48:01 +02:00
script:
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit; fi
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml; fi
2019-11-05 03:02:32 +01:00
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs src/ tests/; fi
after_success:
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi