-
Notifications
You must be signed in to change notification settings - Fork 600
295 lines (263 loc) · 7.55 KB
/
qunit_tests-additional-renovation.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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
name: Additional QUnit
concurrency:
group: wf-${{github.event.pull_request.number || github.sha}}-${{github.workflow}}
cancel-in-progress: true
on:
pull_request:
paths-ignore:
- 'apps/**/*.md'
push:
branches: [24_2]
env:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_TOKEN }}
NX_SKIP_NX_CACHE: ${{ (github.event_name != 'pull_request' || contains( github.event.pull_request.labels.*.name, 'skip-cache')) && 'true' || 'false' }}
jobs:
build:
runs-on: devextreme-shr2
name: Build
timeout-minutes: 25
steps:
- name: Get sources
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- uses: pnpm/action-setup@v3
with:
version: 9
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: |
${{ env.STORE_PATH }}
.nx/cache
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store
- name: Install dependencies
run: |
corepack enable
pnpm install
- name: Build
env:
DEVEXTREME_TEST_CI: "true"
DOTNET_CLI_TELEMETRY_OPTOUT: "true"
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: "true"
working-directory: ./packages/devextreme
run: |
pnpx nx build:dev
pnpx nx build:systemjs
- name: Zip artifacts
working-directory: ./packages/devextreme
run: |
7z a -tzip -mx3 -mmt2 artifacts.zip artifacts ../devextreme-scss/scss/bundles testing/tests/Renovation/widgets.json
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: devextreme-artifacts
path: packages/devextreme/artifacts.zip
retention-days: 1
qunit-tests-timezones:
needs: build
runs-on: devextreme-shr2
name: ${{ matrix.constel }}-${{ matrix.timezone }}
timeout-minutes: 25
strategy:
fail-fast: false
matrix:
constel: [
'misc(1/2)',
'misc(2/2)',
'ui.editors(1/2)',
'ui.editors(2/2)',
'ui.grid(1/2)',
'ui.grid(2/2)',
'ui.scheduler(1/3)',
'ui.scheduler(2/3)',
'ui.scheduler(3/3)'
]
timezone: [ 'US/Pacific', 'Japan', 'Australia/ACT', 'Europe/London' ]
steps:
- name: Get sources
uses: actions/checkout@v4
- name: Run QUnit tests
uses: ./.github/actions/run-qunit-tests
with:
name: ${{ matrix.constel }}-${{ matrix.timezone }}
constel: ${{ matrix.constel }}
browser: 'chrome'
timezone: ${{ matrix.timezone }}
headless: 'true'
useJQuery: 'false'
useCsp: 'true'
qunit-tests-performance:
needs: build
runs-on: devextreme-shr2
name: Performance
timeout-minutes: 25
steps:
- name: Get sources
uses: actions/checkout@v4
- name: Run QUnit tests
uses: ./.github/actions/run-qunit-tests
with:
name: 'Performance'
browser: 'chrome'
isPerformance: 'true'
useJQuery: 'true'
headless: 'false'
useCsp: 'false'
qunit-tests-mobile-and-shadow-dom:
needs: build
runs-on: devextreme-shr2
name: ${{ matrix.constel }}-${{ matrix.kind }}
timeout-minutes: 25
strategy:
fail-fast: false
matrix:
constel: [
'ui',
'ui.widgets(1/3)',
'ui.widgets(2/3)',
'ui.widgets(3/3)',
'ui.editors(1/2)',
'ui.editors(2/2)',
'ui.htmlEditor',
'ui.grid(1/2)',
'ui.grid(2/2)',
'ui.scheduler(1/3)',
'ui.scheduler(2/3)',
'ui.scheduler(3/3)',
'viz'
]
kind: [ 'shadow-dom', 'ios10', 'android6' ]
include:
- headless: false
- kind: 'shadow-dom'
userAgent: ''
useShadowDom: true
- kind: 'ios10'
userAgent: 'ios10'
- kind: 'android6'
userAgent: 'android6'
useJQuery: true
- constel: 'ui'
headless: true
- constel: 'viz'
headless: true
steps:
- name: Get sources
uses: actions/checkout@v4
- name: Run QUnit tests
uses: ./.github/actions/run-qunit-tests
with:
name: ${{ matrix.constel }}-${{ matrix.kind }}
constel: ${{ matrix.constel }}
browser: 'chrome'
useJQuery: ${{ matrix.useJquery || 'false' }}
userAgent: ${{ matrix.userAgent }}
useShadowDom: ${{ matrix.useShadowDom }}
headless: ${{ matrix.headless }}
useCsp: 'true'
qunit-tests-firefox:
needs: build
runs-on: devextreme-shr2
name: ${{ matrix.constel }}-firefox
timeout-minutes: 25
strategy:
fail-fast: false
matrix:
constel: [
'export',
'misc',
'ui',
'ui.editors(1/2)',
'ui.editors(2/2)',
'ui.htmlEditor',
'ui.grid(1/2)',
'ui.grid(2/2)',
'ui.scheduler(1/3)',
'ui.scheduler(2/3)',
'ui.scheduler(3/3)',
'viz',
'renovation'
]
steps:
- name: Get sources
uses: actions/checkout@v4
- name: Run QUnit tests
uses: ./.github/actions/run-qunit-tests
with:
name: ${{ matrix.constel }}-firefox
constel: ${{ matrix.constel }}
browser: 'firefox'
useJQuery: 'true'
headless: 'true'
useCsp: 'true'
qunit-tests-common:
needs: build
runs-on: devextreme-shr2
name: ${{ matrix.constel }}-chrome
timeout-minutes: 25
strategy:
fail-fast: false
matrix:
constel: [ 'export', 'ui.htmlEditor' ]
steps:
- name: Get sources
uses: actions/checkout@v4
- name: Run QUnit tests
uses: ./.github/actions/run-qunit-tests
with:
name: ${{ matrix.constel }}-chrome
constel: ${{ matrix.constel }}
browser: 'chrome'
useJQuery: 'true'
headless: 'true'
useCsp: 'true'
qunit-tests-no-csp:
needs: build
runs-on: devextreme-shr2
name: ${{ matrix.constel }}-no-csp
timeout-minutes: 25
strategy:
fail-fast: false
matrix:
constel: [ 'misc(1/2)', 'misc(2/2)' ]
steps:
- name: Get sources
uses: actions/checkout@v4
- name: Run QUnit tests
uses: ./.github/actions/run-qunit-tests
with:
name: ${{ matrix.constel }}-no-csp
constel: ${{ matrix.constel }}
browser: 'chrome'
useJQuery: 'true'
headless: 'true'
useCsp: 'false'
notify:
runs-on: devextreme-shr2
name: Send notifications
needs: [
build,
qunit-tests-timezones,
qunit-tests-performance,
qunit-tests-mobile-and-shadow-dom,
qunit-tests-firefox,
qunit-tests-no-csp
]
if: github.event_name != 'pull_request' && contains(needs.*.result, 'failure')
steps:
- uses: actions/checkout@v4
- uses: DevExpress/github-actions/send-teams-notification@v1
with:
hook_url: ${{secrets.TEAMS_ALERT}}
bearer_token: ${{secrets.GITHUB_TOKEN}}
specific_repo: DevExpress/DevExtreme