forked from shopware/shopware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
526 lines (501 loc) · 20.8 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
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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
variables:
DOCKER_DRIVER: overlay2
DOCKER_HOST: "tcp://docker:2375"
DOCKER_TLS_CERTDIR: "/certs"
MYSQL_ROOT_PASSWORD: app
WEB_DOCUMENT_ROOT: $CI_PROJECT_DIR/development/public
GIT_STRATEGY: clone
LOG_STDOUT: $CI_PROJECT_DIR/stdout.log
MYSQL_CMD: mysqld
stages:
- lint
- unit
- E2E
- security
- build
- deploy
include:
- local: .gitlab/ci/split.yml
workflow:
rules:
# do not run on push
- if: '$CI_PIPELINE_SOURCE == "push"'
when: never
- when: always
default:
image: shopware/development:7.4-composer-2
timeout: 1h 00m
before_script:
- apt-install jq
- export CI_DEV_BRANCH=$(echo $CI_COMMIT_REF_NAME | cut -d'+' -f2-)
- zip -rq platform.zip .
- git clone http://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.shopware.com/shopware/6/product/development.git
- unzip -q platform.zip -d development/platform/
- cd development
- git -C platform checkout --quiet trunk
- git -C platform checkout --quiet $CI_COMMIT_SHA
- >
if [ "$(git ls-remote origin $CI_DEV_BRANCH | wc -l)" == 1 ]; then
echo "Development Branch: $CI_DEV_BRANCH (explicit)";
git checkout $CI_DEV_BRANCH;
elif [ "$(git ls-remote origin $CI_COMMIT_REF_NAME | wc -l)" == 1 ]; then
echo "Development Branch: $CI_COMMIT_REF_NAME (implicit by same branch name)";
git checkout $CI_COMMIT_REF_NAME;
else
export CI_TARGET_BRANCH_NAME=$(curl -LsS -H "PRIVATE-TOKEN: $CI_GITLAB_API_TOKEN" "https://gitlab.shopware.com/api/v4/projects/$CI_PROJECT_ID/merge_requests?source_branch=$CI_COMMIT_REF_NAME" | jq --raw-output ".[0].target_branch");
if [ "$(git ls-remote origin $CI_TARGET_BRANCH_NAME | wc -l)" == 1 ]; then
echo "Development Branch: $CI_TARGET_BRANCH_NAME (implicit by merge request target branch)";
git checkout $CI_TARGET_BRANCH_NAME;
else
echo "Development Branch: trunk (fallback)";
fi
fi
- cp -v dev-ops/gitlab/.psh.yaml.override .
- /entrypoint supervisord > /dev/null 2>&1 &
interruptible: true
# stage: Lint
ESLint (Administration):
stage: lint
image: node:alpine
before_script: []
rules:
- changes:
- 'src/Administration/Resources/app/administration/**/*'
script:
- cd src/Administration/Resources/app/administration
- npm clean-install
- npm run lint -- --format junit --output-file eslint.junit.xml
artifacts:
reports:
junit: src/Administration/Resources/app/administration/eslint.junit.xml
ESLint (Storefront):
stage: lint
image: node:alpine
before_script: []
rules:
- changes:
- 'src/Storefront/Resources/app/storefront/**/*'
script:
- cd src/Storefront/Resources/app/storefront
- npm clean-install
- npm run lint:js -- --format junit --output-file eslint.junit.xml
artifacts:
reports:
junit: src/Storefront/Resources/app/storefront/eslint.junit.xml
Stylelint (Administration):
stage: lint
image: node:alpine
before_script: []
rules:
- changes:
- 'src/Administration/Resources/app/administration/.stylelintrc'
- 'src/Administration/Resources/app/administration/**/*.scss'
script:
- cd src/Administration/Resources/app/administration
- npm clean-install
- npm run lint:scss -- --custom-formatter 'node_modules/stylelint-junit-formatter' --output-file stylelint.junit.xml
artifacts:
reports:
junit: src/Administration/Resources/app/administration/stylelint.junit.xml
Stylelint (Storefront):
stage: lint
image: node:alpine
before_script: []
rules:
- changes:
- 'src/Storefront/Resources/app/storefront/stylelint.config.js'
- 'src/Storefront/Resources/app/storefront/**/*.scss'
script:
- cd src/Storefront/Resources/app/storefront
- npm clean-install
- npm run lint:scss -- --custom-formatter 'node_modules/stylelint-junit-formatter' --output-file stylelint.junit.xml
artifacts:
reports:
junit: src/Storefront/Resources/app/storefront/stylelint.junit.xml
PHP analysis:
stage: lint
image: shopware/development:7.4-composer-2
services:
- name: mysql:5.7
alias: mysql
retry:
max: 2
when: runner_system_failure
rules:
- changes:
- easy-coding-standard.php
- phpstan.neon.dist
- psalm.xml
- 'src/**/snippet/**/*.json'
- '**/*.php'
- if: '$CI_MERGE_REQUEST_LABELS =~ /.*unit::all.*/'
script:
- ./psh.phar init
- if [[ ! -h vendor/shopware/platform ]]; then echo 'vendor/shopware/platform should be a symlink'; exit 1; fi
- php dev-ops/analyze/generate-composer.php
- php dev-ops/analyze/vendor/bin/ecs check platform/src --config platform/easy-coding-standard.php
- php dev-ops/analyze/phpstan-config-generator.php
- php dev-ops/analyze/vendor/bin/phpstan analyze --autoload-file=dev-ops/analyze/vendor/autoload.php --configuration platform/phpstan.neon --error-format gitlab | tee phpstan-report.json
- php dev-ops/analyze/vendor/bin/psalm --config=platform/psalm.xml --threads=$(nproc) --show-info=false
- php bin/console changelog:check
- php bin/console snippets:validate
artifacts:
reports:
codequality: development/phpstan-report.json
# stage: unit
PHP Full:
image: $DEV_IMAGE
stage: unit
needs: []
services:
- name: $MYSQL_IMAGE
alias: mysql
entrypoint: [ "sh", "-c", "docker-entrypoint.sh $MYSQL_CMD" ]
- name: elasticsearch:7.3.0
alias: elasticsearch
command: [ "bin/elasticsearch", "-Expack.security.enabled=false", "-Ediscovery.type=single-node" ]
- name: swaggerapi/swagger-validator-v2:v2.0.5
alias: swagger
variables:
TEST_SUITES: "administration storefront checkout content framework profiling migration system elasticsearch docs"
script:
- ./psh.phar init
- if [[ ! -h vendor/shopware/platform ]]; then echo 'vendor/shopware/platform should be a symlink'; exit 1; fi
- mkdir -p build/artifacts/
# run all code in test env
- ./psh.phar cache --APP_ENV=test
- chown -R application:application .
- curl http://docker.vm:8000/admin
- ./psh.phar unit --APP_ENV=test --PHP_TEST_COVERAGE=""
artifacts:
when: always
paths:
- development/build/artifacts/phpunit.junit.xml
- development/var/log/*
- $CI_PROJECT_DIR/stdout.log
reports:
junit: development/build/artifacts/phpunit.junit.xml
rules:
- if: '$CI_MERGE_REQUEST_LABELS =~ /.*unit::skip.*/'
when: never
- if: '$CI_MERGE_REQUEST_LABELS =~ /.*unit::all.*/'
- if: '$CI_PIPELINE_SOURCE == "schedule"'
- if: '$CI_PIPELINE_SOURCE == "pipeline"'
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
changes:
- "Migration*.php"
- "**/Migration*.php"
- "src/Core/Framework/Resources/config/packages/shopware.yaml"
- if: '$SKIP_ON_MR != "true" && ($CI_PIPELINE_SOURCE == "merge_request_event" || $CI_COMMIT_BRANCH =~ /^(trunk|6\..+)$/)'
changes:
- phpunit.xml.dist
- '**/*.xml'
- '**/*.yaml'
- '**/*.twig'
- '**/*.json'
- '**/*.php'
parallel:
matrix:
# required until we fix NEXT-15370
- MYSQL_IMAGE: mariadb:10.4.18
DEV_IMAGE: shopware/development:8.0-composer-2
FEATURE_ALL: ["false", "minor"]
- MYSQL_IMAGE:
- mysql:5.7
- mariadb:10.3.28
DEV_IMAGE: shopware/development:8.0-composer-2
FEATURE_ALL: ["false", "minor", "major"]
SKIP_ON_MR: 'true'
- MYSQL_IMAGE:
- mysql:8.0.19
DEV_IMAGE: ["shopware/development:7.4-composer-2", "shopware/development:8.0-composer-2"]
FEATURE_ALL: ["false", "minor", "major"]
MYSQL_CMD: 'mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci --default-authentication-plugin=mysql_native_password --sql-require-primary-key=ON'
SKIP_ON_MR: 'true'
PHP Unit coverage:
# TODOS: replace with minimal image - development is 2GB big! An alpine based one should be around 100MB
image: $DEV_IMAGE
stage: unit
needs: []
services:
- name: $MYSQL_IMAGE
alias: database
entrypoint: [ "sh", "-c", "docker-entrypoint.sh $MYSQL_CMD" ]
variables:
APP_ENV: "test"
PARATEST_PROCESSES: 4
MAILER_URL: "null://localhost"
rules:
- changes:
- phpunit.xml.dist
- '**/*.xml'
- '**/*.yaml'
- '**/*.twig'
- '**/*.json'
- '**/*.php'
- if: '$CI_MERGE_REQUEST_LABELS =~ /.*unit::all.*/'
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
when: manual
allow_failure: true
before_script: []
script:
- composer install --optimize-autoloader
- mkdir -p config/jwt || true
# TODO: do this in TestBootstrap.php - should only be a temp file or env var
- bin/shopware system:generate-jwt-secret
- COVERAGE_OPTIONS="--coverage-text --coverage-cobertura cobertura.xml"
- PHP_OPTIONS="-d pcov.enabled=1 -d pcov.directory=$PWD/src -d pcov.exclude='~(vendor|Test|node_modules)~'"
- php $PHP_OPTIONS vendor/bin/paratest
--passthru-php="$PHP_OPTIONS"
--configuration phpunit.xml.dist
--log-junit phpunit.junit.xml
--testsuite=paratest
--exclude-group=skip-paratest,needsWebserver
--processes $PARATEST_PROCESSES
$COVERAGE_OPTIONS
coverage: '/^\s*Lines:\s*(\d+(?:\.\d+)?%)/'
artifacts:
when: always
paths:
- cobertura.xml
reports:
junit: phpunit.junit.xml
cobertura: cobertura.xml
parallel:
matrix:
- MYSQL_IMAGE: mariadb:10.4.18
DEV_IMAGE: ["shopware/development:7.4-composer-2"]
FEATURE_ALL: ["major"]
Jest (Administration):
stage: unit
needs: []
services:
- name: mariadb:10.3.28
alias: mysql
script:
- ./psh.phar init
- ./psh.phar administration:install-dependencies
- ./psh.phar administration:unit
coverage: '/^\s?All files[^|]*\|[^|]*\s+([\d\.]+)/'
artifacts:
when: always
paths:
- development/build/artifacts/jest
reports:
junit: development/build/artifacts/jest/administration.junit.xml
cobertura: development/build/artifacts/jest/cobertura-coverage.xml
Jest (Storefront):
stage: unit
needs: []
variables:
PROJECT_ROOT: $CI_PROJECT_DIR/development
services:
- name: mariadb:10.3.28
alias: mysql
rules:
- changes:
- 'src/Storefront/Resources/app/storefront/**/*'
script:
- ./psh.phar init
- ./psh.phar storefront:install-dependencies
- npm --prefix vendor/shopware/platform/src/Storefront/Resources/app/storefront/ run unit
coverage: '/^\s?All files[^|]*\|[^|]*\s+([\d\.]+)/'
artifacts:
reports:
junit: development/build/artifacts/storefront.junit.xml
# Stage: E2E
E2E:
stage: E2E
needs: []
dependencies: []
timeout: 2h 00m
services:
- name: docker:18.09.7-dind
alias: docker
- name: mariadb:10.3.28
alias: mysql
script:
- mkdir -p $HOME/.docker
- echo "$DOCKER_AUTH_CONFIG" > $HOME/.docker/config.json
- docker login
- rm $HOME/.docker/config.json
- mkdir -p config/packages/
- cp platform/src/Core/Framework/Resources/config/packages/e2e/e2e.yaml config/packages/shopware.yaml
- ./psh.phar init --APP_ENV="prod"
- ./psh.phar administration:init --APP_ENV="prod"
- ./psh.phar storefront:init --APP_ENV="prod" --DB_NAME="shopware_e2e"
- ./psh.phar e2e:dump-db --APP_ENV="prod"
- E2E_BASE_PATH=vendor/shopware/platform/src/${SECTION}/Resources/app/$(echo ${SECTION} | tr '[:upper:]' '[:lower:]')/test/e2e
- npm install -g [email protected]
- npm i @shopware-ag/[email protected] --prefix $E2E_BASE_PATH
- forever start ${E2E_BASE_PATH}/node_modules/@shopware-ag/e2e-testsuite-platform/routes/cypress.js
- chown -R 1000:1000 .
- CYPRESS_CMD="cypress run"
- if [[ $cypress_usePercy = "true" ]]; then export CYPRESS_CMD="npx percy exec -- cypress run"; npm install --save-dev @percy/cypress; fi
- FULL_CYPRESS_CMD="npm install --production --prefix /e2e && export PERCY_TOKEN=$PERCY_TOKEN && $CYPRESS_CMD --browser chrome --project /e2e --config baseUrl=http://docker.vm:8000 $CYPRESS_PARAMS --spec $TEST_DIRECTORY"
- echo $FULL_CYPRESS_CMD
- docker run --shm-size=2g --name cypress --add-host="docker.vm:$(hostname -I)" -e cypress_grep -e cypress_usePercy -e CYPRESS_baseUrl=http://docker.vm:8000 -v $(pwd)/${E2E_BASE_PATH}:/e2e -v $(pwd):/app -w /e2e --entrypoint "sh" cypress/included:5.6.0 -c "$FULL_CYPRESS_CMD"
after_script:
- npx mochawesome-merge development/build/artifacts/e2e/mochawesome/single-reports/mochawesome*.json > development/build/artifacts/e2e/mochawesome/report-final.json
- npx mochawesome-report-generator development/build/artifacts/e2e/mochawesome/report-final.json --cdn true --reportDir development/build/artifacts/e2e/mochawesome
- docker rm -f cypress
artifacts:
when: always
paths:
- development/build/artifacts/e2e/
- development/var/log/*
- $CI_PROJECT_DIR/stdout.log
reports:
junit: development/build/artifacts/e2e/*.xml
rules:
- if: '$CI_MERGE_REQUEST_LABELS =~ /.*E2E::skip.*/'
when: never
- if: '$CI_MERGE_REQUEST_LABELS =~ /.*E2E::all.*/'
- if: '$CI_PIPELINE_SOURCE == "schedule" || $CI_PIPELINE_SOURCE == "pipeline"'
- if: '$SKIP_ON_MR != "true" && ($CI_PIPELINE_SOURCE == "merge_request_event" || $CI_COMMIT_BRANCH =~ /^(trunk|6\..+)$/)'
parallel:
matrix:
# all test cases in chrome except major are executed on each MR
- SECTION: 'Storefront'
TEST_DIRECTORY: "cypress/integration/**/**/*"
BROWSER: 'chrome'
FEATURE_ALL: ["false", "minor"]
cypress_usePercy: 'false'
- SECTION: 'Administration'
TEST_DIRECTORY:
- "cypress/integration/content/**/* cypress/integration/catalogue/**/* cypress/integration/customer/**/* cypress/integration/media-marketing/**/*"
- "cypress/integration/general/**/* cypress/integration/order/**/* cypress/integration/rule-product-stream/**/* cypress/integration/settings/**/*"
BROWSER: 'chrome'
FEATURE_ALL: ["false", "minor"]
cypress_usePercy: 'false'
# major
- SECTION: 'Storefront'
TEST_DIRECTORY: "cypress/integration/**/**/*"
BROWSER: 'chrome'
FEATURE_ALL: "major"
cypress_usePercy: 'false'
SKIP_ON_MR: 'true'
- SECTION: 'Administration'
TEST_DIRECTORY:
- "cypress/integration/content/**/* cypress/integration/catalogue/**/* cypress/integration/customer/**/* cypress/integration/media-marketing/**/*"
- "cypress/integration/general/**/* cypress/integration/order/**/* cypress/integration/rule-product-stream/**/* cypress/integration/settings/**/*"
BROWSER: 'chrome'
FEATURE_ALL: "major"
cypress_usePercy: 'false'
SKIP_ON_MR: 'true'
# firefox
- SECTION: 'Storefront'
TEST_DIRECTORY: "cypress/integration/**/**/*"
BROWSER: 'firefox'
FEATURE_ALL: 'false'
cypress_usePercy: 'false'
SKIP_ON_MR: 'true'
- SECTION: 'Administration'
TEST_DIRECTORY:
- "cypress/integration/content/**/* cypress/integration/catalogue/**/* cypress/integration/customer/**/* cypress/integration/media-marketing/**/*"
- "cypress/integration/general/**/* cypress/integration/order/**/* cypress/integration/rule-product-stream/**/* cypress/integration/settings/**/*"
BROWSER: 'firefox'
FEATURE_ALL: 'false'
cypress_usePercy: 'false'
SKIP_ON_MR: 'true'
# Visual
- SECTION: 'Administration'
TEST_DIRECTORY: "cypress/integration/visual/**/*"
BROWSER: 'chrome'
FEATURE_ALL: "false"
cypress_usePercy: $CYPRESS_PERCY_USAGE
SKIP_ON_MR: 'true'
Symfony security check:
stage: security
needs: []
image: shopware/development:7.4-composer-2
script:
- composer install --no-interaction --no-scripts
- curl --location --output local-php-security-checker https://github.com/fabpot/local-php-security-checker/releases/download/v1.0.0/local-php-security-checker_1.0.0_linux_amd64
- echo 'e5b12488ca78bc07c149e9352278bf10667b88a8461caac10154f9a6f5476369 local-php-security-checker' > local-php-security-checker.sha256
- sha256sum --check local-php-security-checker.sha256
- chmod +x local-php-security-checker
- ./local-php-security-checker
- composer install --no-interaction --no-scripts -d vendor/shopware/platform/src/Recovery
- ./local-php-security-checker --path=vendor/shopware/platform/src/Recovery
NPM security check:
stage: security
image: shopware/development:7.4-composer-2
before_script: []
dependencies: []
allow_failure: true
when: manual
script:
- cd src/Administration/Resources/app/administration
- npm i
- npm install --save-dev audit-ci
- node node_modules/.bin/audit-ci --moderate --allowlist http-proxy elliptic
- cd ../../../../../src/Storefront/Resources/app/storefront
- npm i
- npm install --save-dev audit-ci
- node node_modules/.bin/audit-ci --moderate --allowlist dot-prop http-proxy acorn jquery elliptic
sonarqube-check:
stage: security
image:
name: sonarsource/sonar-scanner-cli:latest
entrypoint: [""]
before_script: []
variables:
SONAR_USER_HOME: "${CI_PROJECT_DIR}/.sonar" # Defines the location of the analysis task cache
GIT_DEPTH: "0" # Tells git to fetch all the branches of the project, required by the analysis task
cache:
key: "${CI_JOB_NAME}"
paths:
- .sonar/cache
artifacts:
when: always
paths:
- cobertura.xml
- development/build/artifacts/phpunit.junit.xml
script:
- sonar-scanner
allow_failure: true
only:
- trunk
- merge_requests
# Stage: build
Component Library:
stage: build
only:
changes:
- src/Administration/**/*
- src/Storefront/**/*
image: node:10.8
before_script: []
dependencies: []
variables:
PROJECT_ROOT: $CI_PROJECT_DIR
environment:
name: Component Library
url: https://component-library.shopware.com
script:
- npm install --prefix src/Administration/Resources/app/administration
- npm install --prefix src/Administration/Resources/app/administration/build/nuxt-component-library/
- npm run --prefix src/Administration/Resources/app/administration/build/nuxt-component-library/ generate
- "[[ -d build/artifacts/component-library/ ]] && (ls -1qA build/artifacts/component-library/ | grep -q .)"
artifacts:
paths:
- build/artifacts/component-library/
# Stage: deploy
Upload Component Library:
stage: deploy
image: python:latest
before_script: []
only:
refs:
- trunk
variables:
- $CI_PIPELINE_SOURCE == "schedule"
dependencies:
- Component Library
script:
- pip install awscli
- cd build/artifacts/component-library
- aws s3 sync --delete --acl public-read . s3://shopware-ui-component-library-docs/
- aws cloudfront create-invalidation --distribution-id E18U17118IAC82 --paths "/*"
interruptible: false