-
Notifications
You must be signed in to change notification settings - Fork 6
224 lines (193 loc) · 7.32 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
name: m2-actions-test
on: [push]
jobs:
magento2-build:
runs-on: ubuntu-latest
name: 'm2 tests & build'
services:
mysql:
image: docker://mysql:8.0
env:
MYSQL_ROOT_PASSWORD: magento
MYSQL_DATABASE: magento
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
opensearch:
image: opensearchproject/opensearch:1.2.1
ports:
- 9200:9200
options: -e="discovery.type=single-node" -e "plugins.security.disabled=true" -e "plugins.security.ssl.http.enabled=false" --health-cmd="curl http://localhost:9200/_cluster/health" --health-interval=10s --health-timeout=5s --health-retries=10
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: 'launch magento2 static test on all code'
if: ${{false}}
uses: MAD-I-T/magento-actions@v3.29
env:
COMPOSER_AUTH: ${{secrets.COMPOSER_AUTH}}
with:
process: 'static-test'
opensearch: 1
- name: 'Magento coding standard checker'
if: (!cancelled())
uses: MAD-I-T/magento-actions@v3.29
env:
COMPOSER_AUTH: ${{secrets.COMPOSER_AUTH}}
with:
process: 'phpcs-test'
extension: 'magento/app/code/Magento/Email' # can be a custom value module in app/code/ dir e.g: Madit/Atos
severity: 10
standard: 'Magento2'
- name: 'launch magento2 build'
if: (!cancelled())
id: build
uses: MAD-I-T/magento-actions@v3.29
env:
COMPOSER_AUTH: ${{secrets.COMPOSER_AUTH}}
with:
process: 'build'
opensearch: 1
- name: 'launch security scanner modules'
if: (steps.build.outcome == 'success') && (!cancelled())
uses: MAD-I-T/magento-actions@v3.29
env:
COMPOSER_AUTH: ${{secrets.COMPOSER_AUTH}}
with:
process: 'security-scan-modules'
- name: 'launch security scanner files'
if: (!cancelled())
uses: MAD-I-T/magento-actions@v3.29
env:
COMPOSER_AUTH: ${{secrets.COMPOSER_AUTH}}
with:
process: 'security-scan-files'
- name: 'mess detector'
if: (!cancelled())
uses: MAD-I-T/magento-actions@v3.29
with:
process: 'mess-detector'
md_src_path: 'app/code/Magento/Email'
- name: 'phpstan'
if: ${{false}}
uses: MAD-I-T/magento-actions@v3.29
with:
process: 'phpstan'
exec_path: 'app/code/Magento/Email'
- name: 'launch magento2 zero downtime deploy with no permission check'
if: ${{false}} # if: success()
uses: MAD-I-T/magento-actions@v3.29
env:
COMPOSER_AUTH: ${{secrets.COMPOSER_AUTH}}
BUCKET_COMMIT: bucket-commit-${{github.sha}}.tar.gz
MYSQL_ROOT_PASSWORD: magento
MYSQL_DATABASE: magento
HOST_DEPLOY_PATH: ${{secrets.STAGE_HOST_DEPLOY_PATH}}
HOST_DEPLOY_PATH_BUCKET: ${{secrets.STAGE_HOST_DEPLOY_PATH}}/bucket
SSH_PRIVATE_KEY: ${{secrets.STAGE_SSH_PRIVATE_KEY}}
SSH_CONFIG: ${{secrets.STAGE_SSH_CONFIG}}
WRITE_USE_SUDO: false
with:
deployer: 'no-permission-check'
process: 'deploy-staging'
- name: 'unlock deployer if fails'
if: ${{false}} # if: failure() || cancelled()
uses: MAD-I-T/magento-actions@v3.29
env:
COMPOSER_AUTH: ${{secrets.COMPOSER_AUTH}}
BUCKET_COMMIT: bucket-commit-${{github.sha}}.tar.gz
MYSQL_ROOT_PASSWORD: magento
MYSQL_DATABASE: magento
HOST_DEPLOY_PATH: ${{secrets.STAGE_HOST_DEPLOY_PATH}}
HOST_DEPLOY_PATH_BUCKET: ${{secrets.STAGE_HOST_DEPLOY_PATH}}/bucket
SSH_PRIVATE_KEY: ${{secrets.STAGE_SSH_PRIVATE_KEY}}
SSH_CONFIG: ${{secrets.STAGE_SSH_CONFIG}}
WRITE_USE_SUDO: false
with:
process: 'cleanup-staging'
- name: 'start zero downtime deploy on production'
if: ${{false}} # if: steps.build.outcome == 'success'
uses: MAD-I-T/magento-actions@v3.29
env:
COMPOSER_AUTH: ${{secrets.COMPOSER_AUTH}}
BUCKET_COMMIT: bucket-commit-${{github.sha}}.tar.gz
MYSQL_ROOT_PASSWORD: magento
MYSQL_DATABASE: magento
HOST_DEPLOY_PATH: ${{secrets.PROD_HOST_DEPLOY_PATH}}
HOST_DEPLOY_PATH_BUCKET: ${{secrets.PROD_HOST_DEPLOY_PATH}}/bucket
SSH_PRIVATE_KEY: ${{secrets.PROD_SSH_PRIVATE_KEY}}
SSH_CONFIG: ${{secrets.PROD_SSH_CONFIG}}
WRITE_USE_SUDO: false
with:
process: 'deploy-production'
deployer: 'no-permission-check'
- name: 'unlock php deployer if the deployment fails on production'
if: ${{false}} #if: failure() || cancelled()
uses: MAD-I-T/magento-actions@v3.29
env:
COMPOSER_AUTH: ${{secrets.COMPOSER_AUTH}}
BUCKET_COMMIT: bucket-commit-${{github.sha}}.tar.gz
MYSQL_ROOT_PASSWORD: magento
MYSQL_DATABASE: magento
HOST_DEPLOY_PATH: ${{secrets.PROD_HOST_DEPLOY_PATH}}
HOST_DEPLOY_PATH_BUCKET: ${{secrets.PROD_HOST_DEPLOY_PATH}}/bucket
SSH_PRIVATE_KEY: ${{secrets.PROD_SSH_PRIVATE_KEY}}
SSH_CONFIG: ${{secrets.PROD_SSH_CONFIG}}
WRITE_USE_SUDO: false
with:
process: 'cleanup-prod'
magento2-integration-test-latest:
runs-on: ubuntu-latest
name: 'm2 integration test latest'
services:
mysql:
image: docker://mysql:8.0
env:
MYSQL_ROOT_PASSWORD: magento
MYSQL_DATABASE: magento
ports:
- 3106:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
rabbitmq:
image: docker://rabbitmq:3.9-alpine
env:
RABBITMQ_DEFAULT_USER: "magento"
RABBITMQ_DEFAULT_PASS: "magento"
RABBITMQ_DEFAULT_VHOST: "/"
ports:
- 5672:5672
opensearch:
image: opensearchproject/opensearch:1.2.1
ports:
- 9200:9200
options: -e="discovery.type=single-node" -e "plugins.security.disabled=true" -e "plugins.security.ssl.http.enabled=false" --health-cmd="curl http://localhost:9200/_cluster/health" --health-interval=10s --health-timeout=5s --health-retries=10
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: 'launch magento2 integration test custom testsuite'
if: (!cancelled())
uses: MAD-I-T/magento-actions@v3.29
env:
COMPOSER_AUTH: ${{secrets.COMPOSER_AUTH}}
with:
process: 'integration-test'
testsuite: "Memory Usage Tests"
- name: 'integration test class'
if: (!cancelled())
uses: MAD-I-T/magento-actions@v3.29
env:
COMPOSER_AUTH: ${{secrets.COMPOSER_AUTH}}
with:
process: 'integration-test'
integration_class: "./testsuite/Magento/MemoryUsageTest.php"
- name: 'integration test class filter'
if: (!cancelled())
uses: MAD-I-T/magento-actions@v3.29
env:
COMPOSER_AUTH: ${{secrets.COMPOSER_AUTH}}
with:
process: 'integration-test'
integration_class: "./testsuite/Magento/MemoryUsageTest.php"
integration_filter: "testAppReinitializationNoMemoryLeak"