-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
72 lines (66 loc) · 1.64 KB
/
.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
language: php
notifications:
email:
recipients:
- dev@dmk-ebusiness.de
on_success: change
on_failure: always
cache:
directories:
- $HOME/.config/composer/cache
before_install:
- phpenv config-rm xdebug.ini
- composer self-update --1
- composer --version
before_script:
- composer remove --no-update typo3/cms typo3/cms-core
- composer require "$TYPO3_CORE"
- git checkout composer.json
- export TYPO3_PATH_WEB=$PWD/.Build/Web
script:
- >
echo;
echo "Running unit tests";
.Build/bin/phpunit -c phpunit.xml.dist
jobs:
include:
-
stage: test
php: 7.1
env: TYPO3_CORE="typo3/cms=^8.7.32"
-
stage: test
php: 7.2
env: TYPO3_CORE="typo3/cms=^8.7.32"
-
stage: test
php: 7.3
env: TYPO3_CORE="typo3/cms=^8.7.32"
-
stage: test
php: 7.4
env: TYPO3_CORE="typo3/cms=^8.7.32"
-
stage: test
php: 7.2
env: TYPO3_CORE="typo3/minimal=^9.5"
-
stage: test
php: 7.3
env: TYPO3_CORE="typo3/minimal=^9.5"
-
stage: test
php: 7.4
env: TYPO3_CORE="typo3/minimal=^9.5"
-
stage: test
php: 7.2
env: TYPO3_CORE="typo3/minimal=^10.4"
-
stage: test
php: 7.3
env: TYPO3_CORE="typo3/minimal=^10.4"
-
stage: test
php: 7.4
env: TYPO3_CORE="typo3/minimal=^10.4"