forked from rintisch/cart_products
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
251 lines (225 loc) · 6.65 KB
/
.gitlab-ci.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
cache:
key: "$CI_JOB_STAGE-$CI_COMMIT_REF_NAME"
paths:
- .composer/
- .php_cs.cache
variables:
COMPOSER_CACHE_DIR: ".composer"
TYPO3_PATH_WEB: "$CI_PROJECT_DIR/.build/public"
MYSQL_DATABASE: "typo3"
MYSQL_ROOT_PASSWORD: "joh316"
typo3DatabaseName: "typo3"
typo3DatabaseHost: "mysql"
typo3DatabaseUsername: "root"
typo3DatabasePassword: "joh316"
before_script:
- apk add git --update
stages:
- lint
- test
- documentation
- analysis
lint:cgl:
image: composer:2
stage: lint
before_script:
- composer config platform.php 7.4
- composer remove typo3/cms-core --no-update
- composer install --no-progress --no-ansi --no-interaction
script:
- .build/bin/php-cs-fixer fix --config=Build/.php-cs-fixer.dist.php -v --dry-run --using-cache=no --path-mode=intersection ./
lint:typoscriptcgl:
stage: lint
image: composer:2
script:
- composer config platform.php 7.4
- composer remove typo3/cms-core --no-update
- composer install --no-progress --no-ansi --no-interaction
- .build/bin/typoscript-lint -c tslint.yaml
lint:yaml:
stage: lint
image: python:alpine3.7
before_script:
- pip install yamllint==1.10.0
script:
- yamllint -c Build/yamllint.yaml Configuration/ Resources/
lint:php72:
stage: lint
image: php:7.2-alpine
script:
- find . -name \*.php -exec php -l "{}" \;
lint:php73:
stage: lint
image: php:7.3-alpine
script:
- find . -name \*.php -exec php -l "{}" \;
lint:php74:
stage: lint
image: php:7.4-alpine
script:
- find . -name \*.php -exec php -l "{}" \;
lint:php80:
stage: lint
image: php:8.0-alpine
script:
- find . -name \*.php -exec php -l "{}" \;
lint:php81:
stage: lint
image: php:8.1-alpine
script:
- find . -name \*.php -exec php -l "{}" \;
lint:php82:
stage: lint
image: php:8.2-alpine
script:
- find . -name \*.php -exec php -l "{}" \;
lint:php83:
stage: lint
image: php:8.3-alpine
script:
- find . -name \*.php -exec php -l "{}" \;
phpstan:analyse:
image: composer:2
stage: lint
before_script:
- composer config platform.php 7.4
- composer install --no-progress --no-ansi --no-interaction
- composer req tpwd/ke_search "^4.4"
script:
- .build/bin/phpstan analyse -c Build/phpstan.neon
.test: &test_php
stage: test
services:
- mysql:5
image: php:$DOCKER_TAG
only:
- branches
before_script:
- apk add --no-cache bash curl git jq mercurial openssh openssl parallel subversion tini
- >
if [[ "$COVERAGE" == "1" ]]; then
apk add --no-cache $PHPIZE_DEPS
pecl install xdebug && docker-php-ext-enable xdebug
fi
- docker-php-ext-install mysqli
- wget https://composer.github.io/installer.sig -O - -q | tr -d '\n' > installer.sig
- php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
- php -r "if (hash_file('SHA384', 'composer-setup.php') === trim(file_get_contents('installer.sig'))) { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
- php composer-setup.php --no-ansi --install-dir=/usr/bin --filename=composer
- php -r "unlink('composer-setup.php'); unlink('installer.sig');"
- >
if [[ "$TYPO3_VERSION" == "^10.4" || "$DOCKER_TAG" == "8.2-alpine" || "$DOCKER_TAG" == "8.3-alpine" ]]; then
jq -r 'del(."require-dev"."werkraummedia/watchlist")' composer.json > _.json && mv _.json composer.json
fi
- composer config --no-plugins allow-plugins.typo3/cms-composer-installers true
- composer config --no-plugins allow-plugins.typo3/class-alias-loader true
- composer require typo3/cms-core="${TYPO3_VERSION}"
script:
- >
if [[ "$COVERAGE" == "0" ]]; then
.build/bin/phpunit -c Build/UnitTests.xml
fi
- >
if [[ "$COVERAGE" == "1" ]]; then
.build/bin/phpunit --coverage-clover=phpunit.coverage.xml --log-junit=phpunit.report.xml -c Build/UnitTests.xml
fi
# - typo3DatabaseDriver=pdo_sqlite .build/bin/phpunit -c Build/FunctionalTests.xml
artifacts:
paths:
- phpunit.coverage.xml
- phpunit.report.xml
expire_in: 1 day
when: always
test:php72:typo3_10:
<<: *test_php
variables:
DOCKER_TAG: 7.2-alpine
TYPO3_VERSION: ^10.4
COVERAGE: 0
test:php73:typo3_10:
<<: *test_php
variables:
DOCKER_TAG: 7.3-alpine
TYPO3_VERSION: ^10.4
COVERAGE: 0
test:php74:typo3_10:
<<: *test_php
variables:
DOCKER_TAG: 7.4-alpine
TYPO3_VERSION: ^10.4
COVERAGE: 0
test:php74:typo3_11:
<<: *test_php
variables:
DOCKER_TAG: 7.4-alpine
TYPO3_VERSION: ^11.5
COVERAGE: 0
test:php80:typo3_11:
<<: *test_php
variables:
DOCKER_TAG: 8.0-alpine
TYPO3_VERSION: ^11.5
COVERAGE: 0
test:php81:typo3_11:
<<: *test_php
variables:
DOCKER_TAG: 8.1-alpine
TYPO3_VERSION: ^11.5
COVERAGE: 0
test:php82:typo3_11:
<<: *test_php
variables:
DOCKER_TAG: 8.2-alpine
TYPO3_VERSION: ^11.5
COVERAGE: 0
test:php83:typo3_11:
<<: *test_php
variables:
DOCKER_TAG: 8.3-alpine
TYPO3_VERSION: ^11.5
COVERAGE: 1
documentation:
stage: documentation
image:
name: t3docs/render-documentation:v2.4.0
entrypoint: [""]
before_script:
- cp -a ${CI_PROJECT_DIR}/. /PROJECT
- mkdir -p ${CI_PROJECT_DIR}/Documentation-GENERATED-temp
script:
- cd /ALL/venv
- /ALL/Menu/mainmenu.sh makehtml-no-cache -c resultdir ${CI_PROJECT_DIR}/Documentation-GENERATED-temp
artifacts:
paths:
- ${CI_PROJECT_DIR}/Documentation-GENERATED-temp/Result/project/0.0.0
expire_in: 1 day
when: always
sonarqube:
stage: analysis
image: ciricihq/gitlab-sonar-scanner
variables:
SONAR_URL: "https://sonar.extco.de"
SONAR_PROJECT_NAME: "$CI_PROJECT_NAME"
SONAR_TOKEN: "$SONAR_TOKEN"
SONAR_PROJECT_VERSION: "$CI_JOB_ID"
SONAR_ANALYSIS_MODE: "issues"
SONAR_SOURCES: "./Classes"
SONAR_GITLAB_PROJECT_ID: "$CI_PROJECT_ID"
script:
- echo "sonar.projectKey=cart_products-4.x" > sonar-project.properties
- gitlab-sonar-scanner -Dsonar.php.coverage.reportPath=phpunit.coverage.xml -Dsonar.php.tests.reportPath=phpunit.report.xml
allow_failure: true
sonarqube-reports:
stage: analysis
image: ciricihq/gitlab-sonar-scanner
variables:
SONAR_URL: "https://sonar.extco.de"
SONAR_PROJECT_NAME: "$CI_PROJECT_NAME"
SONAR_TOKEN: "$SONAR_TOKEN"
SONAR_PROJECT_VERSION: "$CI_JOB_ID"
SONAR_ANALYSIS_MODE: "publish"
SONAR_SOURCES: "./Classes"
SONAR_TESTS: "./Tests"
script:
- echo "sonar.projectKey=cart_products-4.x" > sonar-project.properties
- gitlab-sonar-scanner -Dsonar.php.coverage.reportPath=phpunit.coverage.xml -Dsonar.php.tests.reportPath=phpunit.report.xml