forked from TYPO3-Solr/ext-tika
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (35 loc) · 797 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
language: php
services:
- docker
php:
- 7.2
env:
global:
- TIKA_VERSION="1.22"
- TIKA_PATH=$HOME/tika
- EXT_SOLR_VERSION="dev-master"
- TYPO3_DATABASE_NAME="typo3_ci"
- TYPO3_DATABASE_HOST="127.0.0.1"
- TYPO3_DATABASE_USERNAME="root"
- TYPO3_DATABASE_PASSWORD=""
matrix:
- TYPO3_VERSION="^9.5"
matrix:
fast_finish: true
before_install:
- composer self-update
- composer --version
- composer global require fabpot/php-cs-fixer
- composer global require namelesscoder/typo3-repository-client
install:
- Build/Test/bootstrap.sh
script:
- Build/Test/cibuild.sh
after_script:
- Build/Test/publish_coverage.sh
- Build/Release/ter_tag_uploader.sh
- Build/Test/cleanup.sh
cache:
directories:
- $TIKA_PATH
- $HOME/.composer/cache