File tree Expand file tree Collapse file tree 3 files changed +29
-14
lines changed Expand file tree Collapse file tree 3 files changed +29
-14
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -132,7 +132,22 @@ jobs:
132
132
name : Create integration test environment file
133
133
working_directory : ~/Sites
134
134
command : |
135
- docker cp ../project/.circleci/.env $(docker compose ps -q phpfpm):/var/www/html/dev/tests/integration/.env
135
+ cat > .env << 'EOF'
136
+
137
+ MAGENTO_ADMIN_FIRST_NAME=john
138
+ MAGENTO_ADMIN_LAST_NAME=smith
139
+ MAGENTO_ADMIN_USER=john.smith
140
+ MAGENTO_ADMIN_PASSWORD=password123
141
+ MAGENTO_ADMIN_FRONTNAME=admin
142
+ MAGENTO_LOCALE=en_US
143
+ MAGENTO_CURRENCY=USD
144
+ MAGENTO_TIMEZONE=America/New_York
145
+ ALGOLIA_APPLICATION_ID=${ALGOLIA_APPLICATION_ID}
146
+ ALGOLIA_SEARCH_KEY=${ALGOLIA_SEARCH_API_KEY}
147
+ ALGOLIA_API_KEY=${ALGOLIA_API_KEY}
148
+ INDEX_PREFIX=integration_test_
149
+ EOF
150
+ docker cp .env $(docker compose ps -q phpfpm):/var/www/html/dev/tests/integration/.env
136
151
- run :
137
152
name : Apply environment variables
138
153
working_directory : ~/Sites
Original file line number Diff line number Diff line change 23
23
'amqp-user ' => 'magento ' ,
24
24
'amqp-password ' => 'magento ' ,
25
25
'consumers-wait-for-messages ' => '0 ' ,
26
+ 'session-save ' => 'redis ' ,
27
+ 'session-save-redis-host ' => 'redis ' ,
28
+ 'session-save-redis-port ' => 6379 ,
29
+ 'session-save-redis-db ' => 5 ,
30
+ 'session-save-redis-max-concurrency ' => 20 ,
31
+ 'cache-backend ' => 'redis ' ,
32
+ 'cache-backend-redis-server ' => 'redis ' ,
33
+ 'cache-backend-redis-db ' => 4 ,
34
+ 'cache-backend-redis-port ' => 6379 ,
35
+ 'page-cache ' => 'redis ' ,
36
+ 'page-cache-redis-server ' => 'redis ' ,
37
+ 'page-cache-redis-db ' => 3 ,
38
+ 'page-cache-redis-port ' => 6379
26
39
];
You can’t perform that action at this time.
0 commit comments