forked from PrestaShop/ga.tests.ui.pr
-
Notifications
You must be signed in to change notification settings - Fork 0
243 lines (239 loc) · 8.37 KB
/
pr_test.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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
name: Testing PrestaShop pull requests
on:
workflow_dispatch:
inputs:
pr_number:
description: Pull request Id
required: true
base_branch:
type: choice
description: Base branch to rebase the PR
required: true
options:
- 'develop'
- '8.1.x'
- '8.0.x'
- '1.7.8.x'
default: 'develop'
fast_fail:
type: boolean
description: Fast fail on first error
required: true
default: false
ps_mode_dev:
type: boolean
description: Use developer mode?
required: true
backoffice_layout:
type: choice
description: Backoffice layout
required: true
options:
- 'legacy'
- 'symfony'
default: 'legacy'
rebase_or_merge:
type: choice
required: true
description: Rebase or merge the pull request
options:
- 'rebase'
- 'merge'
default: 'rebase'
php_version:
type: choice
description: PHP version
required: true
options:
- '7.3'
- '7.4'
- '8.0'
- '8.1'
- '8.2'
- '8.3'
default: '8.1'
node_version:
type: choice
description: Node version
required: true
options:
- '14.21.3'
- '16.20.1'
default: '14.21.3'
jobs:
# Sanity tests are run independently because it's the only campaign that handles the installation itself, since it tests it
sanity-test:
name: Sanity campaign
uses: ./.github/workflows/test-sanity.yml
with:
pr_number: ${{ inputs.pr_number }}
base_branch: ${{ inputs.base_branch }}
ps_mode_dev: ${{ inputs.ps_mode_dev }}
rebase_or_merge: ${{ inputs.rebase_or_merge }}
php_version: ${{ inputs.php_version }}
node_version: ${{ inputs.node_version }}
backoffice_layout: ${{ inputs.backoffice_layout }}
fast_fail: ${{ inputs.fast_fail }}
# We perform a unique build that is stored as an artifact, only then do we start the campaign that will rely on this build
build-shop:
name: Prebuild shop and export artifacts
uses: ./.github/workflows/build-shop.yml
with:
pr_number: ${{ inputs.pr_number }}
base_branch: ${{ inputs.base_branch }}
ps_mode_dev: ${{ inputs.ps_mode_dev }}
rebase_or_merge: ${{ inputs.rebase_or_merge }}
php_version: ${{ inputs.php_version }}
node_version: ${{ inputs.node_version }}
backoffice_layout: ${{ inputs.backoffice_layout }}
# These campaigns are run first because they are longer, so we try to optimize the total run However this list must not
# be too long or too many runners will be blocked by these campaigns and the split would be counter-productive, it's a
# delicate balance to maintain The criteria so far was campaign longer than 15min
test-long-campaigns:
name: Run long campaign ${{ matrix.TEST_COMMAND }}
needs: build-shop
uses: ./.github/workflows/test-with-prebuilt-shop.yml
with:
base_branch: ${{ inputs.base_branch }}
ps_mode_dev: ${{ inputs.ps_mode_dev }}
php_version: ${{ inputs.php_version }}
node_version: ${{ inputs.node_version }}
test_command: ${{ matrix.TEST_COMMAND }}
fast_fail: ${{ inputs.fast_fail }}
strategy:
fail-fast: false
matrix:
TEST_COMMAND:
- 'functional:BO:advanced-parameters:07-10'
- 'functional:BO:catalog:03-04'
- 'functional:BO:catalog:07-08'
- 'functional:BO:design'
- 'functional:BO:orders:01-create-orders'
- 'functional:BO:orders:01-view-and-edit-order'
- 'functional:BO:orders:03-05'
- 'functional:BO:shop-parameters:03-04'
- 'functional:BO:shop-parameters:05-07'
- 'functional:BO:shop-parameters:01-02'
- 'functional:FO:classic:08-12'
BASE_BRANCH:
- ${{ inputs.base_branch }}
exclude:
## 1.7.8.x
- BASE_BRANCH: 1.7.8.x
TEST_COMMAND: 'functional:FO:classic:08-12'
## 8.0.x
- BASE_BRANCH: 8.0.x
TEST_COMMAND: 'functional:FO:classic:08-12'
test-short-campaigns:
name: Run short campaign ${{ matrix.TEST_COMMAND }}
needs: build-shop
uses: ./.github/workflows/test-with-prebuilt-shop.yml
with:
base_branch: ${{ inputs.base_branch }}
ps_mode_dev: ${{ inputs.ps_mode_dev }}
php_version: ${{ inputs.php_version }}
node_version: ${{ inputs.node_version }}
test_command: ${{ matrix.TEST_COMMAND }}
fast_fail: ${{ inputs.fast_fail }}
strategy:
fail-fast: false
matrix:
TEST_COMMAND:
- 'cldr'
- 'functional:API'
- 'functional:BO:login'
- 'functional:BO:dashboard'
- 'functional:BO:advanced-parameters:01-06'
- 'functional:BO:advanced-parameters:11-12'
- 'functional:BO:catalog:01-02'
- 'functional:BO:catalog:05-06'
- 'functional:BO:customer:01'
- 'functional:BO:customer:02-03'
- 'functional:BO:customer-service'
- 'functional:BO:header'
- 'functional:BO:international:01'
- 'functional:BO:international:02'
- 'functional:BO:international:03-04'
- 'functional:BO:modules'
- 'functional:BO:orders:01:0-1'
- 'functional:BO:orders:02'
- 'functional:BO:payment'
- 'functional:BO:shipping'
- 'functional:FO:01-03'
- 'functional:FO:04-07'
- 'functional:FO:08-12'
- 'functional:FO:classic:01-03'
- 'functional:FO:classic:04-07'
- 'functional:FO:hummingbird:01-03'
- 'functional:productV2'
- 'functional:WS'
- 'modules'
- 'regression'
- 'sanity:productV2'
BASE_BRANCH:
- ${{ inputs.base_branch }}
exclude:
## 1.7.8.x
- BASE_BRANCH: 1.7.8.x
TEST_COMMAND: 'cldr'
- BASE_BRANCH: 1.7.8.x
TEST_COMMAND: 'functional:BO:advanced-parameters:11-12'
- BASE_BRANCH: 1.7.8.x
TEST_COMMAND: 'functional:BO:dashboard'
- BASE_BRANCH: 1.7.8.x
TEST_COMMAND: 'functional:productV2'
- BASE_BRANCH: 1.7.8.x
TEST_COMMAND: 'functional:API'
- BASE_BRANCH: 1.7.8.x
TEST_COMMAND: 'functional:FO:classic:01-03'
- BASE_BRANCH: 1.7.8.x
TEST_COMMAND: 'functional:FO:classic:04-07'
- BASE_BRANCH: 1.7.8.x
TEST_COMMAND: 'functional:FO:hummingbird:01-03'
- BASE_BRANCH: 1.7.8.x
TEST_COMMAND: 'functional:WS'
- BASE_BRANCH: 1.7.8.x
TEST_COMMAND: 'modules'
- BASE_BRANCH: 1.7.8.x
TEST_COMMAND: 'sanity:productV2'
## 8.0.x
- BASE_BRANCH: 8.0.x
TEST_COMMAND: 'cldr'
- BASE_BRANCH: 8.0.x
TEST_COMMAND: 'functional:BO:advanced-parameters:11-12'
- BASE_BRANCH: 8.0.x
TEST_COMMAND: 'functional:BO:dashboard'
- BASE_BRANCH: 8.0.x
TEST_COMMAND: 'functional:productV2'
- BASE_BRANCH: 8.0.x
TEST_COMMAND: 'functional:API'
- BASE_BRANCH: 8.0.x
TEST_COMMAND: 'functional:FO:classic:01-03'
- BASE_BRANCH: 8.0.x
TEST_COMMAND: 'functional:FO:classic:04-07'
- BASE_BRANCH: 8.0.x
TEST_COMMAND: 'functional:FO:hummingbird:01-03'
- BASE_BRANCH: 8.0.x
TEST_COMMAND: 'functional:WS'
- BASE_BRANCH: 8.0.x
TEST_COMMAND: 'modules'
## 8.1.x
- BASE_BRANCH: 8.1.x
TEST_COMMAND: 'functional:BO:advanced-parameters:11-12'
- BASE_BRANCH: 8.1.x
TEST_COMMAND: 'functional:FO:01-03'
- BASE_BRANCH: 8.1.x
TEST_COMMAND: 'functional:FO:04-07'
- BASE_BRANCH: 8.1.x
TEST_COMMAND: 'functional:FO:08-12'
## develop
- BASE_BRANCH: develop
TEST_COMMAND: 'functional:FO:01-03'
- BASE_BRANCH: develop
TEST_COMMAND: 'functional:FO:04-07'
- BASE_BRANCH: develop
TEST_COMMAND: 'functional:FO:08-12'
- BASE_BRANCH: develop
TEST_COMMAND: 'functional:productV2'
- BASE_BRANCH: develop
TEST_COMMAND: 'sanity:productV2'