-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
203 lines (184 loc) Β· 7.9 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
dist: xenial
language: php
addons:
apt:
packages:
- parallel
sonarcloud:
organization: "ichhabrecht-github"
cache:
directories:
- $HOME/.composer/cache
- $HOME/.sonar/cache
jdk:
- oraclejdk8
services:
- mysql
jobs:
fast_finish: true
allow_failures:
- if: type != cron
env: TYPO3=10.4.x-dev
include:
- &tests
stage: π tests
before_install:
- if php -i | grep -v TRAVIS_CMD | grep -q xdebug; then phpenv config-rm xdebug.ini; fi
install:
- composer require --no-progress --no-suggest --no-update nimut/typo3-complete:"$TYPO3"
- composer update
- git checkout composer.json
before_script:
- mkdir -p .Build/public/typo3conf/ext/
- if [ ! -L .Build/public/typo3conf/ext/core_upgrader ]; then ln -snvf ../../../../. .Build/public/typo3conf/ext/core_upgrader; fi
- export TYPO3_PATH_ROOT=$PWD/.Build/public
- export typo3DatabaseName=typo3
- export typo3DatabaseHost=localhost
- export typo3DatabaseUsername=root
- export typo3DatabasePassword=
script:
- >
if [ -d "Tests/Unit" ]; then
echo;
echo "Running unit tests";
echo;
echo;
.Build/bin/phpunit --bootstrap .Build/vendor/nimut/testing-framework/res/Configuration/UnitTestsBootstrap.php --testsuite unit;
fi
- >
if [ -d "Tests/Functional" ]; then
echo;
echo "Running functional tests";
echo;
echo;
find 'Tests/Functional' -wholename '*Test.php' | parallel --gnu 'echo; echo "Running functional test suite {}"; .Build/bin/phpunit --bootstrap .Build/vendor/nimut/testing-framework/res/Configuration/FunctionalTestsBootstrap.php {}';
fi
- >
echo;
echo "Running php lint";
echo;
echo;
find . -name \*.php ! -path "./.Build/*" | parallel --gnu php -d display_errors=stderr -l {} > /dev/null \;;
php: 7.4
env: TYPO3=^10.4
- <<: *tests
php: 7.3
env: TYPO3=^10.4
- <<: *tests
php: 7.2
env: TYPO3=^10.4
- stage: π’ to ter
if: tag IS present AND env(TYPO3_ORG_USERNAME) IS present AND env(TYPO3_ORG_PASSWORD) IS present
php: 7.2
script:
- >
echo;
echo "Preparing upload of release ${TRAVIS_TAG} to TER";
echo;
echo;
composer global require helhum/ter-client;
- >
TAG_MESSAGE=`git tag -n10 -l $TRAVIS_TAG | sed 's/^[0-9.]*[ ]*//g'`;
echo;
echo "Uploading release ${TRAVIS_TAG} to TER";
echo;
echo;
$HOME/.composer/vendor/bin/ter-client upload core_upgrader . -u "$TYPO3_ORG_USERNAME" -p "$TYPO3_ORG_PASSWORD" -m "$TAG_MESSAGE";
- stage: β with sonarqube scanner
if: type = push AND branch IN (master, pre-merge) AND env(SONAR_TOKEN) IS present AND fork = false
git:
depth: false
php: 7.2
env: TYPO3="^10.4"
before_script:
- mkdir -p .Log/coverage/ .Log/junit/
- export TYPO3_PATH_WEB=$PWD/.Build/public
- export typo3DatabaseName=typo3
- export typo3DatabaseHost=localhost
- export typo3DatabaseUsername=root
- export typo3DatabasePassword=
script:
- >
if [ -d "Tests" ]; then
for TYPO3 in $TYPO3; do
echo;
echo "Running TYPO3 version $TYPO3";
echo;
echo;
git clean -Xdf;
composer require --dev --no-progress --no-suggest --no-update nimut/typo3-complete:"$TYPO3";
composer update;
git checkout composer.json;
VERSION=${TYPO3//[!0-9]/};
mkdir -p .Build/public/typo3conf/ext/
if [ ! -L .Build/public/typo3conf/ext/core_upgrader ]; then ln -snvf ../../../../. .Build/public/typo3conf/ext/core_upgrader; fi
if [ -d "Tests/Unit" ]; then
echo;
echo "Running unit tests";
echo;
echo;
.Build/bin/phpunit --bootstrap .Build/vendor/nimut/testing-framework/res/Configuration/UnitTestsBootstrap.php --log-junit .Log/junit/unit_$VERSION.xml --coverage-php .Log/coverage/unit_$VERSION.cov --testsuite unit;
fi
if [ -d "Tests/Functional" ]; then
echo;
echo "Running functional tests";
echo;
echo;
.Build/bin/phpunit --bootstrap .Build/vendor/nimut/testing-framework/res/Configuration/FunctionalTestsBootstrap.php --log-junit .Log/junit/functional_$VERSION.xml --coverage-php .Log/coverage/functional_$VERSION.cov --testsuite functional;
fi
done
echo;
echo "Merging log and coverage files";
echo;
echo;
composer require --no-progress --no-suggest --update-with-all-dependencies nimut/phpunit-merger;
.Build/bin/phpunit-merger coverage .Log/coverage/ .Log/coverage.xml;
.Build/bin/phpunit-merger log .Log/junit/ .Log/junit.xml;
fi
- >
echo;
echo "Running SonarQube Scanner";
echo;
echo;
sonar-scanner;
- &dev-tests
<<: *tests
stage: π dev tests
before_install:
- if php -i | grep -v TRAVIS_CMD | grep -q xdebug; then phpenv config-rm xdebug.ini; fi
- composer config minimum-stability dev
- composer config prefer-stable true
- composer require --no-progress --no-suggest --no-update typo3/cms-core:"@dev"
php: 7.4
env: TYPO3=10.4.x-dev
- <<: *dev-tests
php: 7.3
env: TYPO3=10.4.x-dev
- <<: *dev-tests
php: 7.2
env: TYPO3=10.4.x-dev
- &lowest-tests
<<: *dev-tests
stage: π prefer-lowest tests
if: type = cron
install:
- composer require --no-progress --no-suggest --no-update --prefer-lowest nimut/typo3-complete:"$TYPO3"
- composer update
- git checkout composer.json
php: 7.4
env: TYPO3=^10.4
- <<: *lowest-tests
php: 7.4
env: TYPO3=10.4.x-dev
- <<: *lowest-tests
php: 7.3
env: TYPO3=^10.4
- <<: *lowest-tests
php: 7.3
env: TYPO3=10.4.x-dev
- <<: *lowest-tests
php: 7.2
env: TYPO3=^10.4
- <<: *lowest-tests
php: 7.2
env: TYPO3=10.4.x-dev