File tree 2 files changed +26
-0
lines changed
2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -477,3 +477,27 @@ Upload Component Library:
477
477
- aws s3 sync --delete --acl public-read . s3://shopware-ui-component-library-docs/
478
478
- aws cloudfront create-invalidation --distribution-id E18U17118IAC82 --paths "/*"
479
479
interruptible : false
480
+
481
+ sonarqube-check :
482
+ stage : Security
483
+ image :
484
+ name : sonarsource/sonar-scanner-cli:latest
485
+ entrypoint : [""]
486
+ before_script : []
487
+ variables :
488
+ SONAR_USER_HOME : " ${CI_PROJECT_DIR}/.sonar" # Defines the location of the analysis task cache
489
+ GIT_DEPTH : " 0" # Tells git to fetch all the branches of the project, required by the analysis task
490
+ cache :
491
+ key : " ${CI_JOB_NAME}"
492
+ paths :
493
+ - .sonar/cache
494
+ artifacts :
495
+ when : always
496
+ paths :
497
+ - development/build/artifacts/phpunit.clover.xml
498
+ - development/build/artifacts/phpunit.junit.xml
499
+ script :
500
+ - sonar-scanner
501
+ allow_failure : true
502
+ only :
503
+ - trunk
Original file line number Diff line number Diff line change
1
+ sonar.projectKey =shopware_6_product_platform_AXkSMGV3KmP1qfUJ23cM
2
+ sonar.qualitygate.wait =true
You can’t perform that action at this time.
0 commit comments