forked from TYPO3-Solr/ext-solr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
47 lines (40 loc) · 900 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
42
43
44
45
46
47
language: php
php:
- 5.5
- 5.6
- 7.0
sudo: true
env:
global:
- TYPO3_DATABASE_NAME="typo3_ci"
- TYPO3_DATABASE_HOST="localhost"
- TYPO3_DATABASE_USERNAME="root"
- TYPO3_DATABASE_PASSWORD=""
matrix:
- TYPO3_VERSION="~7.6.4"
- TYPO3_VERSION="~8.0.0"
- TYPO3_VERSION="dev-master"
matrix:
fast_finish: true
allow_failures:
- env: TYPO3_VERSION="dev-master"
- php: 7.0
exclude:
- php: 5.5
env: TYPO3_VERSION="dev-master"
- php: 5.6
env: TYPO3_VERSION="dev-master"
- php: 5.5
env: TYPO3_VERSION="~8.0.0"
- php: 5.6
env: TYPO3_VERSION="~8.0.0"
before_install:
- composer self-update
- composer --version
- composer global require fabpot/php-cs-fixer
install: Tests/Build/bootstrap.sh
script: Tests/Build/cibuild.sh
after_script: Tests/Build/cleanup.sh
cache:
directories:
- $HOME/.composer/cache