-
Notifications
You must be signed in to change notification settings - Fork 600
228 lines (205 loc) · 5.85 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
name: Additional QUnit
concurrency:
group: wf-${{github.event.pull_request.number || github.sha}}-${{github.workflow}}
cancel-in-progress: true
on:
pull_request:
push:
branches: [22_2]
jobs:
build:
runs-on: devextreme-shr2
name: Build
timeout-minutes: 15
steps:
- name: Get sources
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Restore npm cache
uses: actions/cache@v3
with:
path: ./node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-modules
- name: Run npm install
run: npm install --no-audit --no-fund
- name: Build
env:
DEVEXTREME_TEST_CI: "true"
DOTNET_CLI_TELEMETRY_OPTOUT: "true"
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: "true"
run: npm run build:dev
- name: Zip artifacts
run: |
7z a -tzip -mx3 -mmt2 artifacts.zip artifacts scss/bundles testing/tests/Renovation/widgets.json
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: devextreme-artifacts
path: artifacts.zip
retention-days: 1
qunit-tests-timezones:
needs: build
runs-on: devextreme-shr2
name: ${{ matrix.constel }}-${{ matrix.timezone }}
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
constel: [
'misc',
'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: [ 'PST8PDT', 'Japan', 'Australia/ACT', 'Europe/London' ]
steps:
- name: Get sources
uses: actions/checkout@v3
- 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'
qunit-tests-performance:
needs: build
runs-on: devextreme-shr2
name: Performance
timeout-minutes: 15
steps:
- name: Get sources
uses: actions/checkout@v3
- name: Run QUnit tests
uses: ./.github/actions/run-qunit-tests
with:
name: 'Performance'
browser: 'chrome'
isPerformance: 'true'
useJQuery: 'true'
headless: 'false'
qunit-tests-mobile-and-shadow-dom:
needs: build
runs-on: devextreme-shr2
name: ${{ matrix.constel }}-${{ matrix.kind }}
timeout-minutes: 15
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
exclude:
- kind: 'shadow-dom'
constel: 'ui'
- kind: 'shadow-dom'
constel: 'ui.scheduler(1/3)'
- kind: 'shadow-dom'
constel: 'ui.scheduler(2/3)'
- kind: 'shadow-dom'
constel: 'ui.scheduler(3/3)'
- kind: 'shadow-dom'
constel: 'viz'
steps:
- name: Get sources
uses: actions/checkout@v3
- name: Run QUnit tests
uses: ./.github/actions/run-qunit-tests
with:
name: ${{ matrix.constel }}-${{ matrix.kind }}
constel: ${{ matrix.constel }}
browser: 'chrome'
useJQuery: ${{ matrix.useJQuery }}
userAgent: ${{ matrix.userAgent }}
useShadowDom: ${{ matrix.useShadowDom }}
headless: ${{ matrix.headless }}
qunit-tests-firefox:
needs: build
runs-on: devextreme-shr2
name: ${{ matrix.constel }}-firefox
timeout-minutes: 15
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@v3
- name: Run QUnit tests
uses: ./.github/actions/run-qunit-tests
with:
name: ${{ matrix.constel }}-firefox
constel: ${{ matrix.constel }}
browser: 'firefox'
useJQuery: 'true'
headless: 'true'
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
]
if: always() && contains(needs.*.result, 'failure')
steps:
- uses: actions/checkout@v3
- uses: DevExpress/github-actions/send-teams-notification@main
with:
hook_url: ${{secrets.TEAMS_ALERT}}
bearer_token: ${{secrets.GITHUB_TOKEN}}
specific_repo: DevExpress/DevExtreme
specific_branch: 22_2