File tree Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change 1
1
version : 2.1
2
2
3
+ orbs :
4
+
5
+
3
6
executors :
4
7
magento-executor :
5
8
machine :
@@ -16,13 +19,23 @@ jobs:
16
19
type : string
17
20
steps :
18
21
- checkout
22
+ - php/install_composer
23
+ - run :
24
+ name : Configure composer authentication
25
+ command : |
26
+ composer config --global http-basic.repo.magento.com ${MAGENTO_AUTH_USERNAME} ${MAGENTO_AUTH_PASSWORD}
19
27
- run :
20
28
name : Setup magento enterprise
21
29
command : |
30
+ mkdir ~/Sites
31
+ cd ~/Sites
22
32
curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/template | bash
23
- bin/download enterprise <<parameters.magento-version>>
24
- bin/setup magento-enterprise.test
25
-
33
+ bin/start --no-dev
34
+ bin/setup-composer-auth
35
+ bin/cli git clone [email protected] :magento/magento2.git .
36
+ bin/cli git checkout << parameters.magento-version >>>-develop
37
+ bin/composer install
38
+ bin/composer require algolia/algoliasearch-client-php "^4.0"
26
39
27
40
workflows :
28
41
magento-build-and-test :
You can’t perform that action at this time.
0 commit comments