File tree Expand file tree Collapse file tree 1 file changed +19
-3
lines changed Expand file tree Collapse file tree 1 file changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -27,15 +27,31 @@ jobs:
27
27
command : |
28
28
composer config --global http-basic.repo.magento.com ${MAGENTO_AUTH_USERNAME} ${MAGENTO_AUTH_PASSWORD}
29
29
- run :
30
- name : Setup magento enterprise
30
+ name : Configure folders
31
31
command : |
32
- mkdir ~/Sites
32
+ mkdir -p ~/Sites
33
33
cd ~/Sites
34
+ - run :
35
+ name : Configure Docker compose override file
36
+ working_directory : ~/Sites
37
+ command : |
38
+ cat <<EOF > docker-compose.override.yml
39
+ version: "3.7"
40
+
41
+ services:
42
+ phpfpm:
43
+ image: markoshust/magento-php:<< parameters.php-version >>-fpm
44
+ EOF
45
+ - run :
46
+ name : Setup magento enterprise
47
+ working_directory : ~/Sites
48
+ command : |
34
49
curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/template | bash
35
50
bin/start --no-dev
51
+ bin/fixowns
36
52
bin/setup-composer-auth
37
53
bin/cli git clone [email protected] :magento/magento2.git .
38
- bin/cli git checkout << parameters.magento-version >>>-develop
54
+ bin/cli git checkout tags/ << parameters.magento-version >>>-develop
39
55
bin/composer install
40
56
bin/composer require algolia/algoliasearch-client-php "^4.0"
41
57
You can’t perform that action at this time.
0 commit comments