This repository has been archived by the owner on Jun 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path.travis.yml
266 lines (247 loc) · 9.31 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
dist: bionic
language: php
addons:
apt:
packages:
- parallel
sonarcloud:
organization: "nimut-github"
cache:
directories:
- $HOME/.composer/cache
- $HOME/.sonar/cache
jdk:
- oraclejdk8
services:
- mysql
jobs:
fast_finish: true
allow_failures:
- if: type != cron
env: TYPO3=dev-main
- 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
install:
- composer require --no-progress --no-suggest nimut/typo3-complete:"$TYPO3"
- git checkout composer.json
before_script:
- export TYPO3_PATH_ROOT=$PWD/.Build/public
- export typo3DatabaseName=typo3
- export typo3DatabaseHost=localhost
- export typo3DatabaseUsername=root
- export typo3DatabasePassword=
script:
- >
echo;
echo "Running unit tests";
echo;
echo;
.Build/bin/phpunit -c res/Configuration/UnitTests.xml .Build/public/typo3conf/ext/testbase/Tests/Unit/;
- >
echo;
echo "Running functional tests";
echo;
echo;
find '.Build/public/typo3conf/ext/testbase/Tests/Functional' -wholename '*Test.php' | parallel --gnu 'echo; echo "Running functional test suite {}"; .Build/bin/phpunit -c res/Configuration/FunctionalTests.xml --exclude-group destructive {}';
- >
echo;
echo "Running destructive functional tests";
echo;
echo;
rm -Rf .Build/Web/typo3temp/*;
.Build/bin/phpunit -c res/Configuration/FunctionalTests.xml --group destructive .Build/public/typo3conf/ext/testbase/Tests/Functional/;
- >
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.0
env: TYPO3=^11.5
- <<: *tests
php: 8.0
env: TYPO3=^11.5
- <<: *tests
php: 7.4
env: TYPO3=^11.5
- <<: *tests
php: 7.4
env: TYPO3=^10.4
- <<: *tests
php: 7.4
env: TYPO3=^9.5
- <<: *tests
php: 7.3
env: TYPO3=^10.4
- <<: *tests
php: 7.3
env: TYPO3=^9.5
- <<: *tests
php: 7.2
env: TYPO3=^10.4
- <<: *tests
php: 7.2
env: TYPO3=^9.5
- &prepare
stage: ✔ extension preparation
before_script:
- if php -i | grep -v TRAVIS_CMD | grep -q xdebug; then phpenv config-rm xdebug.ini; fi
- mkdir -p tests/Packages/testbase/Tests/Packages/testing-framework
- rsync -a --delete --exclude ".*" --exclude "tests" . tests/Packages/testbase/Tests/Packages/testing-framework
script:
- cd tests/Packages/testbase/
- composer install
- grep "Testbase extension for nimut/testing-framework" .Build/public/typo3conf/ext/testbase/composer.json
php: 8.1.0
- <<: *prepare
php: 8.0
- <<: *prepare
php: 7.4
- <<: *prepare
php: 7.3
- <<: *prepare
php: 7.2
- 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.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:
- >
for TYPO3 in $TYPO3; do
echo;
echo "Running TYPO3 version $TYPO3";
echo;
echo;
git clean -Xdf;
composer require --dev --no-progress --no-suggest nimut/typo3-complete:"$TYPO3";
git checkout composer.json;
VERSION=${TYPO3//[!0-9]/};
echo;
echo "Running unit tests";
echo;
echo;
.Build/bin/phpunit -c res/Configuration/UnitTests.xml --log-junit .Log/log/unit$VERSION.xml --coverage-php .Log/coverage/unit$VERSION.cov --whitelist ./ .Build/public/typo3conf/ext/testbase/Tests/Unit/;
echo;
echo "Running functional tests";
echo;
echo;
.Build/bin/phpunit -c res/Configuration/FunctionalTests.xml --exclude-group destructive --log-junit .Log/log/functional$VERSION.xml --coverage-php .Log/coverage/functional$VERSION.cov --whitelist ./ .Build/public/typo3conf/ext/testbase/Tests/Functional/;
echo;
echo "Running destructive functional tests";
echo;
echo;
rm -Rf .Build/Web/typo3temp/*;
.Build/bin/phpunit -c res/Configuration/FunctionalTests.xml --group destructive --log-junit .Log/log/functional-destructive$VERSION.xml --coverage-php .Log/coverage/functional-destructive$VERSION.cov --whitelist ./ .Build/public/typo3conf/ext/testbase/Tests/Functional/;
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;
- >
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
php: 8.1.0
env: TYPO3=dev-main
- <<: *dev-tests
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=dev-main
- <<: *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
install:
- composer require --no-progress --no-suggest --prefer-lowest nimut/typo3-complete:"$TYPO3"
- git checkout composer.json
php: 8.1.0
env: TYPO3=dev-main
- <<: *lowest-tests
php: 8.1.0
env: TYPO3=11.5.x-dev
- <<: *lowest-tests
php: 8.0
env: TYPO3=dev-main
- <<: *lowest-tests
php: 8.0
env: TYPO3=11.5.x-dev
- <<: *lowest-tests
php: 7.4
env: TYPO3=dev-main
- <<: *lowest-tests
php: 7.4
env: TYPO3=11.5.x-dev
- <<: *lowest-tests
php: 7.4
env: TYPO3=10.4.x-dev
- <<: *lowest-tests
php: 7.4
env: TYPO3=9.5.x-dev
- <<: *lowest-tests
php: 7.3
env: TYPO3=10.4.x-dev
- <<: *lowest-tests
php: 7.3
env: TYPO3=9.5.x-dev
- <<: *lowest-tests
php: 7.2
env: TYPO3=10.4.x-dev
- <<: *lowest-tests
php: 7.2
env: TYPO3=9.5.x-dev