forked from NamelessCoder/TYPO3.CMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
93 lines (78 loc) · 2.44 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
language: php
node_js:
- "0.10"
matrix:
fast_finish: true
include:
- php: 7
env: UNIT_TESTS=yes FUNCTIONAL_TESTS=yes JSUNIT_TESTS=yes PHP_LINT=yes XLF_CHECK=yes SUBMODULE_TEST=yes
sudo: false
addons:
apt:
packages:
- parallel
cache:
directories:
- $HOME/.composer/cache
services:
- memcached
- redis-server
notifications:
irc:
channels:
- "irc.freenode.net#typo3-cms"
on_success: change
on_failure: always
use_notice: true
slack:
rooms:
secure: nHWVTPyG3CQWIcYA1LASS11dD0/NBcmrAyr3xxQW0XYtH47ZUKRlEtxrVLuL7ptciNwMbfZgsiRQ1QGWDerHUlBkg0iwRxpUZgeylzWaiXsHFVAp2IBfEX54KrWeYm9gewIBDDtnp+sLgpXGgmpIs2bAGkZe5129UsUExoWh0+g=
on_success: change
on_failure: always
webhooks:
urls:
- http://www.t3bot.de/hooks/travis/index.php
on_success: always
on_failure: always
on_start: never
before_script:
- phpenv config-rm xdebug.ini
- echo "extension = memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- composer install
- export typo3DatabaseName="typo3"
- export typo3DatabaseHost="localhost"
- export typo3DatabaseUsername="root"
- export typo3DatabasePassword=""
script:
- >
if [[ "$UNIT_TESTS" == "yes" ]]; then
./bin/phpunit -c components/testing_framework/core/Build/UnitTests.xml
fi
- >
if [[ "$FUNCTIONAL_TESTS" == "yes" ]]; then
./components/testing_framework/core/Build/Scripts/splitFunctionalTests.sh 14
parallel --jobs 4 -a <(seq 0 13) --gnu './bin/phpunit -c components/testing_framework/core/Build/FunctionalTests-Job-{}.xml'
fi
- >
if [[ "$JSUNIT_TESTS" == "yes" ]]; then
cd Build && npm update -g npm && npm install && cd ..
./Build/node_modules/karma/bin/karma start components/testing_framework/core/Build/Configuration/JSUnit/karma.conf.js --single-run
fi
- >
if [[ "$PHP_LINT" == "yes" ]]; then
find typo3/ -name \*.php -not -path "vendor/*" | parallel --jobs 6 --gnu php -d display_errors=stderr -l {} > /dev/null \;
fi
- >
if [[ "$XLF_CHECK" == "yes" ]]; then
./typo3/sysext/core/Build/Scripts/xlfcheck.sh
fi
- >
if [[ "$SUBMODULE_TEST" == "yes" ]]; then
/bin/bash -c "
if [[ `git submodule status 2>&1 | wc -l` -ne 0 ]]; then
echo \"Found a submodule definition in repository\";
exit 99;
fi
"
fi