forked from AOEpeople/TYPO3_Restler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
76 lines (64 loc) · 1.75 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
language: php
php:
- 7.0
- 7.1
- 7.2
env:
- TYPO3_VERSION=^7.6 COVERAGE=0 FUNCTIONAL=0
- TYPO3_VERSION=^8.7 COVERAGE=0 FUNCTIONAL=0
- TYPO3_VERSION=dev-master COVERAGE=0 FUNCTIONAL=0
matrix:
include:
- env: TYPO3_VERSION=^7.6 COVERAGE=1 FUNCTIONAL=0
php: 7.0
allow_failures:
- env: TYPO3_VERSION=dev-master COVERAGE=0 FUNCTIONAL=0
notifications:
email:
on_success: never
on_failure: never
sudo: false
addons:
apt:
packages:
- parallel
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer self-update
- composer --version
before_script:
# Installs TYPO3
- composer require typo3/cms=$TYPO3_VERSION
# Restore composer.json
- git checkout composer.json
- export "TYPO3_PATH_WEB"=$PWD/.Build/Web;
# Locating UnitTests.xml
- export "UNIT_XML"='.Build/vendor/nimut/testing-framework/res/Configuration/UnitTests.xml'
# Symlink TYPO3-Core
- ln -nfs .Build/vendor/typo3/cms/typo3 typo3
script:
- >
if [[ "$COVERAGE" == "0" ]]; then
echo;
echo "Running unit tests";
.Build/bin/phpunit --colors -c $UNIT_XML Tests/Unit
fi
- >
if [[ "$COVERAGE" == "1" ]]; then
echo;
echo "Running unit tests";
.Build/bin/phpunit --coverage-clover=unittest-coverage.clover --colors -c $UNIT_XML Tests/Unit
fi
- >
if [[ "$COVERAGE" == "1" ]]; then
echo;
echo "Uploading code coverage results";
wget https://scrutinizer-ci.com/ocular.phar
php ocular.phar code-coverage:upload --format=php-clover unittest-coverage.clover
fi
- >
echo;
echo "Running php lint";
find . -name \*.php ! -path "./.Build/*" ! -path "./scripts/*" ! -path "./typo3_src/*" | parallel --gnu php -d display_errors=stderr -l {} > /dev/null \;