-
Notifications
You must be signed in to change notification settings - Fork 27
/
.travis.yml
311 lines (292 loc) · 11.5 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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
dist: bionic
language: php
addons:
apt:
packages:
- parallel
sonarcloud:
organization: "ichhabrecht-github"
cache:
directories:
- $HOME/.config/composer/cache
- $HOME/.sonar/cache
jdk:
- oraclejdk8
services:
- mysql
jobs:
fast_finish: true
allow_failures:
- if: type != cron
env: TYPO3=11.5.x-dev
- if: type != cron
env: TYPO3=10.4.x-dev
- if: type != cron
env: TYPO3=9.5.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
- composer require --no-progress --no-suggest --no-update mask/mask:"$MASK"
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/mask_export ]; then ln -snvf ../../../../. .Build/public/typo3conf/ext/mask_export; 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: 8.1
env: TYPO3=^11.5 MASK=^7.1
- <<: *tests
php: 8.0
env: TYPO3=^11.5 MASK=^7.1
- <<: *tests
php: 7.4
env: TYPO3=^11.5 MASK=^7.1
- <<: *tests
php: 7.4
env: TYPO3=^10.4 MASK=^7.1
- <<: *tests
php: 7.4
env: TYPO3=^10.4 MASK=^6.0
- <<: *tests
php: 7.4
env: TYPO3=^10.4 MASK=^5.0
- <<: *tests
php: 7.4
env: TYPO3=^9.5 MASK=^4.0
- <<: *tests
php: 7.3
env: TYPO3=^10.4 MASK=^7.1
- <<: *tests
php: 7.3
env: TYPO3=^10.4 MASK=^6.0
- <<: *tests
php: 7.3
env: TYPO3=^10.4 MASK=^5.0
- <<: *tests
php: 7.3
env: TYPO3=^9.5 MASK=^4.0
- <<: *tests
php: 7.2
env: TYPO3=^10.4 MASK=^7.1
- <<: *tests
php: 7.2
env: TYPO3=^10.4 MASK=^6.0
- <<: *tests
php: 7.2
env: TYPO3=^10.4 MASK=^5.0
- <<: *tests
php: 7.2
env: TYPO3=^9.5 MASK=^4.0
- stage: 🚢 to ter
if: tag IS present AND env(TYPO3_ORG_USERNAME) IS present AND env(TYPO3_ORG_PASSWORD) IS present
php: 7.4
before_install:
- sudo sed 's/mozilla.DST_Root_CA_X3.crt/!mozilla\/DST_Root_CA_X3.crt/' -i /etc/ca-certificates.conf
- sudo update-ca-certificates
script:
- >
echo;
echo "Preparing upload of release ${TRAVIS_TAG} to TER";
echo;
echo;
composer global require typo3/tailor;
- >
TAG_MESSAGE=`git tag -n10 -l $TRAVIS_TAG | sed 's/^[0-9.]*[ ]*//g'`;
echo;
echo "Uploading release ${TRAVIS_TAG} to TER";
echo;
echo;
PATH=$PATH:$(composer global config bin-dir --absolute --quiet);
TYPO3_API_USERNAME="$TYPO3_ORG_USERNAME" TYPO3_API_PASSWORD="$TYPO3_ORG_PASSWORD" tailor ter:publish --comment "$TAG_MESSAGE" ${TRAVIS_TAG} mask_export;
- stage: ✔ with sonarqube scanner
if: type = push AND branch IN (main, pre-merge) AND env(SONAR_TOKEN) IS present AND fork = false
git:
depth: false
php: 7.4
env: TYPO3="^9.5 ^10.4 ^11.5"
before_install:
- nvm install 12
- nvm use 12
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/mask_export ]; then ln -snvf ../../../../. .Build/public/typo3conf/ext/mask_export; 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 --no-update nimut/phpunit-merger;
composer update;
.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-backend:"@dev"
- composer require --no-progress --no-suggest --no-update typo3/cms-core:"@dev"
- composer require --no-progress --no-suggest --no-update typo3/cms-extbase:"@dev"
- composer require --no-progress --no-suggest --no-update typo3/cms-extensionmanager:"@dev"
- composer require --no-progress --no-suggest --no-update typo3/cms-fluid:"@dev"
- composer require --no-progress --no-suggest --no-update typo3/cms-fluid-styled-content:"@dev"
php: 8.1.0
env: TYPO3=11.5.x-dev
- <<: *dev-tests
php: 8.0
env: TYPO3=11.5.x-dev
- <<: *dev-tests
php: 7.4
env: TYPO3=11.5.x-dev
- <<: *dev-tests
php: 7.4
env: TYPO3=10.4.x-dev
- <<: *dev-tests
php: 7.4
env: TYPO3=9.5.x-dev
- <<: *dev-tests
php: 7.3
env: TYPO3=10.4.x-dev
- <<: *dev-tests
php: 7.3
env: TYPO3=9.5.x-dev
- <<: *dev-tests
php: 7.2
env: TYPO3=10.4.x-dev
- <<: *dev-tests
php: 7.2
env: TYPO3=9.5.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: 8.1.0
env: TYPO3=^11.5
- <<: *lowest-tests
php: 8.1.0
env: TYPO3=11.5.x-dev
- <<: *lowest-tests
php: 8.0
env: TYPO3=^11.5
- <<: *lowest-tests
php: 8.0
env: TYPO3=11.5.x-dev
- <<: *lowest-tests
php: 7.4
env: TYPO3=^11.5
- <<: *lowest-tests
php: 7.4
env: TYPO3=11.5.x-dev
- <<: *lowest-tests
php: 7.4
env: TYPO3=^10.4
- <<: *lowest-tests
php: 7.4
env: TYPO3=10.4.x-dev
- <<: *lowest-tests
php: 7.4
env: TYPO3=^9.5
- <<: *lowest-tests
php: 7.4
env: TYPO3=9.5.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.3
env: TYPO3=^9.5
- <<: *lowest-tests
php: 7.3
env: TYPO3=9.5.x-dev
- <<: *lowest-tests
php: 7.2
env: TYPO3=^10.4
- <<: *lowest-tests
php: 7.2
env: TYPO3=10.4.x-dev
- <<: *lowest-tests
php: 7.2
env: TYPO3=^9.5
- <<: *lowest-tests
php: 7.2
env: TYPO3=9.5.x-dev