File tree 2 files changed +6
-1
lines changed
tests/functional/Codeception
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ modules:
26
26
composer_magento_password : " %REPO_PASSWORD%"
27
27
composer_github_token : " %GITHUB_TOKEN%"
28
28
use_generated_images : false
29
+ generated_images_namespace : " cloudft"
29
30
use_cached_workdir : true
30
31
version_generated_images : " %TRAVIS_BUILD_NUMBER%"
31
32
printOutput : false
Original file line number Diff line number Diff line change @@ -495,7 +495,11 @@ public function replaceImagesWithGenerated(): bool
495
495
$ path ,
496
496
preg_replace (
497
497
'/(magento\/magento-cloud-docker-(\w+)):((\d+\.\d+|latest)(-fpm|-cli)?(-\d+\.\d+\.\d+))/i ' ,
498
- 'cloudft/$2:$4$5- ' . $ this ->_getConfig ('version_generated_images ' ),
498
+ sprintf (
499
+ '%s/$2:$4$5-%s ' ,
500
+ $ this ->_getConfig ('generated_images_namespace ' ),
501
+ $ this ->_getConfig ('version_generated_images ' )
502
+ ),
499
503
file_get_contents ($ path )
500
504
)
501
505
);
You can’t perform that action at this time.
0 commit comments