-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.travis.yml
48 lines (41 loc) · 877 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
48
language: php
php:
- 7.0
- 7.1
sudo: true
addons:
apt:
packages:
- parallel
env:
global:
- TYPO3_DATABASE_NAME="typo3_ci"
- TYPO3_DATABASE_HOST="localhost"
- TYPO3_DATABASE_USERNAME="root"
- TYPO3_DATABASE_PASSWORD=""
- EXT_SOLR_VERSION="dev-master"
matrix:
- TYPO3_VERSION="^8.7"
- TYPO3_VERSION="8.x-dev"
- TYPO3_VERSION="9.x-dev"
matrix:
fast_finish: true
allow_failures:
- env: TYPO3_VERSION="9.x-dev"
php: 7.0
- env: TYPO3_VERSION="9.x-dev"
php: 7.1
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/cleanup.sh
cache:
directories:
- $HOME/.composer/cache