@@ -9,6 +9,7 @@ variables:
99 WEB_DOCUMENT_ROOT : $CI_PROJECT_DIR/
1010 GIT_STRATEGY : clone
1111 CHECKOUT_SHOPWARE_BRANCH : " 5.6"
12+ CHECKOUT_COOKIE_CONSENT_MANAGER_BRANCH : " master"
1213
1314stages :
1415 - Code Style Check
@@ -76,19 +77,22 @@ SW 5.2:
7677 before_script : []
7778 variables :
7879 CHECKOUT_SHOPWARE_BRANCH : " 5.2"
80+ CHECKOUT_COOKIE_CONSENT_MANAGER_BRANCH : " 5.2.11-5.2.27"
7981 only :
8082 - master
8183 script :
8284 - zip -rq plugin.zip .
8385 - git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.shopware.com/shopware/5/product/shopware.git shopware --depth=1 -b ${CHECKOUT_SHOPWARE_BRANCH}
8486 - unzip -q plugin.zip -d shopware/custom/plugins/SwagPaymentPayPalUnified
8587 - cd shopware
88+ - git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.shopware.com/shopware/5/product/swagcookieconsentmanager.git custom/plugins/SwagCookieConsentManager -b ${CHECKOUT_COOKIE_CONSENT_MANAGER_BRANCH}
8689 - /entrypoint supervisord &>/dev/null &
8790 - cp /usr/local/bin/composer composer.phar
8891 - ant -f build/build.xml build-unit -Dapp.path="" -Dapp.host="localhost" -Ddb.host="mysql" -Ddb.port=3306 -Ddb.name="shopware" -Ddb.user="app" -Ddb.password="app"
8992 - php bin/console sw:plugin:refresh
9093 - php bin/console sw:plugin:list
9194 - php bin/console sw:plugin:install --activate SwagPaymentPayPalUnified
95+ - php bin/console sw:plugin:install --activate SwagCookieConsentManager
9296 - php bin/console sw:cache:clear -e testing
9397 - cd custom/plugins/SwagPaymentPayPalUnified
9498 - php ../../../vendor/bin/phpunit
@@ -105,9 +109,14 @@ SW 5.3:
105109 image : shopware/5-continuous:7.2
106110 variables :
107111 CHECKOUT_SHOPWARE_BRANCH : " 5.3"
112+ CHECKOUT_COOKIE_CONSENT_MANAGER_BRANCH : " 5.3.5-5.3.7"
108113 only :
109114 - master
110115 script :
116+ - git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.shopware.com/shopware/5/product/swagcookieconsentmanager.git custom/plugins/SwagCookieConsentManager -b ${CHECKOUT_COOKIE_CONSENT_MANAGER_BRANCH}
117+ - php bin/console sw:plugin:refresh
118+ - php bin/console sw:plugin:install --activate SwagCookieConsentManager
119+ - php bin/console sw:cache:clear -e testing
111120 - cd custom/plugins/SwagPaymentPayPalUnified
112121 - php ../../../vendor/bin/phpunit
113122 --configuration phpunit.xml.dist
@@ -123,9 +132,14 @@ SW 5.4:
123132 image : shopware/5-continuous:7.2
124133 variables :
125134 CHECKOUT_SHOPWARE_BRANCH : " 5.4"
135+ CHECKOUT_COOKIE_CONSENT_MANAGER_BRANCH : " 5.4.6"
126136 only :
127137 - master
128138 script :
139+ - git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.shopware.com/shopware/5/product/swagcookieconsentmanager.git custom/plugins/SwagCookieConsentManager -b ${CHECKOUT_COOKIE_CONSENT_MANAGER_BRANCH}
140+ - php bin/console sw:plugin:refresh
141+ - php bin/console sw:plugin:install --activate SwagCookieConsentManager
142+ - php bin/console sw:cache:clear -e testing
129143 - cd custom/plugins/SwagPaymentPayPalUnified
130144 - php ../../../vendor/bin/phpunit
131145 --configuration phpunit.xml.dist
@@ -141,9 +155,14 @@ SW 5.5:
141155 image : shopware/5-continuous:7.2
142156 variables :
143157 CHECKOUT_SHOPWARE_BRANCH : " 5.5"
158+ CHECKOUT_COOKIE_CONSENT_MANAGER_BRANCH : " 5.5.0-5.5.10"
144159 only :
145160 - master
146161 script :
162+ - git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.shopware.com/shopware/5/product/swagcookieconsentmanager.git custom/plugins/SwagCookieConsentManager -b ${CHECKOUT_COOKIE_CONSENT_MANAGER_BRANCH}
163+ - php bin/console sw:plugin:refresh
164+ - php bin/console sw:plugin:install --activate SwagCookieConsentManager
165+ - php bin/console sw:cache:clear -e testing
147166 - cd custom/plugins/SwagPaymentPayPalUnified
148167 - php ../../../vendor/bin/phpunit
149168 --configuration phpunit.xml.dist
@@ -174,7 +193,7 @@ SW 5.6:
174193SW 5.7 :
175194 stage : Shopware Versions
176195 needs : [PHP analyze]
177- image : shopware/5-continuous:7.2
196+ image : shopware/5-continuous:7.3
178197 variables :
179198 CHECKOUT_SHOPWARE_BRANCH : " 5.7"
180199 only :
0 commit comments