-
Notifications
You must be signed in to change notification settings - Fork 102
397 lines (321 loc) · 12.6 KB
/
visual_tests_frameworks.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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
name: Frameworks
concurrency:
group: wf-${{github.event.pull_request.number || github.sha}}-${{github.workflow}}
cancel-in-progress: true
on:
pull_request:
push:
branches:
- "[0-9][0-9]_[0-9]"
workflow_dispatch:
schedule:
- cron: '0 */2 * * 6,0'
jobs:
build-devextreme:
runs-on: ubuntu-latest
name: Build DevExtreme
timeout-minutes: 20
steps:
#Git
- name: Get sources
uses: actions/checkout@v3
- name: Clone devextreme repo from PR author fork
continue-on-error: true
if: github.event_name == 'pull_request'
run: git clone -b ${{github.event.pull_request.head.ref}} --depth 1 https://github.com/${{github.event.pull_request.user.login}}/devextreme ./devextreme
- name: Clone devextreme repo
run: |
BASE_BRANCH=$(node -p -e "require('./package.json').version.slice(0, 4).replace('.', '_')")
test -d ./devextreme || git clone -b $BASE_BRANCH --depth 1 https://github.com/devexpress/devextreme ./devextreme
- name: Log devextreme top commit
working-directory: ./devextreme
run: git log -1 --oneline
#Build Devextreme
- name: Restore npm cache
uses: actions/cache@v3
with:
path: 'devextreme/**/node_modules'
key: ${{ runner.os }}-devextreme-node-modules-${{ hashFiles('devextreme/**/package-lock.json') }}
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install packages
working-directory: ./devextreme
run: npm install --no-audit --no-fund
- name: Build
working-directory: ./devextreme/packages/devextreme
run: npm run build-npm-devextreme
# Inject descriptions
# This is required for lint check for deprecated usages - some deprecated tags are generated during descriptions injection
- name: Clone devextreme-documentation repo
run: |
BASE_BRANCH=$(node -p -e "require('./package.json').version.slice(0, 4).replace('.', '_')")
test -d ./devextreme-documentation-repo || git clone -b $BASE_BRANCH https://github.com/devexpress/devextreme-documentation ./devextreme-documentation-repo
- name: Install packages to devextreme-documentation
working-directory: ./devextreme-documentation-repo
run: npm i
- name: Make Declarations.json
working-directory: ./devextreme
run: npm run tools:discover-declarations
- name: Make Descriptions.json
working-directory: ./devextreme-documentation-repo
run: npm run update-topics -- --artifacts ../devextreme/artifacts/internal-tools
- name: Inject descriptions
working-directory: ./devextreme
run: npm run devextreme:inject-descriptions
# Pack
- name: Pack devextreme
working-directory: ./devextreme/packages/devextreme/artifacts/npm/devextreme
run: npm pack
- name: Pack devextreme-dist
working-directory: ./devextreme/packages/devextreme/artifacts/npm/devextreme-dist
run: npm pack
- name: Pack devextreme-angular
working-directory: ./devextreme/packages/devextreme-angular
run: npm run pack
- name: Pack devextreme-react
working-directory: ./devextreme/packages/devextreme-react
run: npm run pack
- name: Pack devextreme-vue
working-directory: ./devextreme/packages/devextreme-vue
run: npm run pack
- name: Copy packages
run: |
cp ./devextreme/packages/devextreme/artifacts/npm/devextreme/*.tgz ./devextreme-installer.tgz
cp ./devextreme/packages/devextreme/artifacts/npm/devextreme-dist/*.tgz ./devextreme-dist-installer.tgz
cp ./devextreme/packages/devextreme-angular/npm/dist/*.tgz ./devextreme-angular-installer.tgz
cp ./devextreme/packages/devextreme-react/npm/*.tgz ./devextreme-react-installer.tgz
cp ./devextreme/packages/devextreme-vue/npm/*.tgz ./devextreme-vue-installer.tgz
- name: Copy build artifacts
uses: actions/upload-artifact@v3
with:
name: devextreme-sources
path: |
devextreme-installer.tgz
devextreme-dist-installer.tgz
devextreme-angular-installer.tgz
devextreme-react-installer.tgz
devextreme-vue-installer.tgz
retention-days: 1
build-demos:
runs-on: ubuntu-latest
name: Build Demos
timeout-minutes: 20
needs: build-devextreme
steps:
- name: Get sources
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Download devextreme sources
uses: actions/download-artifact@v3
with:
name: devextreme-sources
- name: Restore npm cache
uses: actions/cache@v3
with:
path: ./node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }}
- name: Delete DX packages
run: sed -i '/23.2-next/d' ./package.json
- name: Install packages
run: npm install --no-audit --no-fund
- name: Install package
run: |
npm install devextreme-installer.tgz
npm install devextreme-dist-installer.tgz
npm install devextreme-react-installer.tgz
npm install devextreme-vue-installer.tgz
npm install devextreme-angular-installer.tgz
- name: Prepare bundles
run: npm run prepare-bundles
- name: Demos - Run tsc
run: tsc --noEmit
#Publish artifacts
- name: Zip node_modules
run: 7z a -t7z -mx3 -mmt2 node_modules.7z node_modules
- name: Copy build artifacts
uses: actions/upload-artifact@v3
with:
name: devextreme-sources
path: |
node_modules.7z
bundles/
retention-days: 1
lint:
name: ${{ matrix.name }}
needs: build-devextreme
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
include:
- name: Lint code base (excluding demos)
command: npm run lint-non-demos
- name: Lint demos (1/4)
command: CONSTEL=1/4 npm run lint-demos
- name: Lint demos (2/4)
command: CONSTEL=2/4 npm run lint-demos
- name: Lint demos (3/4)
command: CONSTEL=3/4 npm run lint-demos
- name: Lint demos (4/4)
command: CONSTEL=4/4 npm run lint-demos
steps:
- name: Get sources
uses: actions/checkout@v3
- name: Get changed files
uses: ./.github/actions/get-changed-files
if: github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'force all tests')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path: changed-files.json
- name: Delete DX packages
run: sed -i '/23.2-next/d' ./package.json
- name: Download devextreme sources
uses: actions/download-artifact@v3
with:
name: devextreme-sources
- name: Install packages
run: |
npm install devextreme-installer.tgz
npm install devextreme-dist-installer.tgz
npm install devextreme-react-installer.tgz
npm install devextreme-vue-installer.tgz
npm install devextreme-angular-installer.tgz
- name: Run npm install
run: npm install --no-audit --no-fund
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 5.0.408
- name: Prepare dotnet
run: |
dotnet new globaljson --sdk-version 5.0.408
dotnet tool install -g dotnet-format --version 5.1.225507
- name: Run lint
env:
CHANGEDFILEINFOSPATH: ${{ github.workspace }}/changed-files.json
DEBUG: 'eslint:cli-engine,stylelint:standalone'
run: ${{ matrix.command }}
check_generated_demos:
name: ${{ matrix.name }}
runs-on: ubuntu-latest
timeout-minutes: 10
needs: build-demos
strategy:
fail-fast: false
matrix:
include:
- name: Check generated demos (1/5)
command: CONSTEL=1/5 npm run convert-to-js
- name: Check generated demos (2/5)
command: CONSTEL=2/5 npm run convert-to-js
- name: Check generated demos (3/5)
command: CONSTEL=3/5 npm run convert-to-js
- name: Check generated demos (4/5)
command: CONSTEL=4/5 npm run convert-to-js
- name: Check generated demos (5/5)
command: CONSTEL=5/5 npm run convert-to-js
steps:
- name: Get sources
uses: actions/checkout@v3
- name: Delete DX packages
run: sed -i '/23.2-next/d' ./package.json
- name: Download devextreme sources
uses: actions/download-artifact@v3
with:
name: devextreme-sources
- name: Unpack artifacts
run: 7z x node_modules.7z
- name: Install packages
run: |
npm install devextreme-installer.tgz
npm install devextreme-dist-installer.tgz
npm install devextreme-react-installer.tgz
npm install devextreme-vue-installer.tgz
npm install devextreme-angular-installer.tgz
- name: Run npm install
run: npm install --no-audit --no-fund
- name: Prepare JS
run: npm run prepare-js
- name: Check generated JS demos
run: |
${{ matrix.command }}
git add ./JSDemos/Demos -N
if git diff --exit-code . ':!package-lock.json' ':!package.json' ; then
echo "Generated JS demos are up-to-date"
else
echo "Generated JS demos are outdated. Execute 'npm run convert-to-js ./JSDemos/Demos/**/React' and commit changes."
echo "If you see another diff, ensure that extra listed files have LF endings."
exit 1
fi
testcafe:
needs: build-demos
strategy:
fail-fast: false
matrix:
CONSTEL: [react(1/4), react(2/4), react(3/4), react(4/4), vue(1/4), vue(2/4), vue(3/4), vue(4/4), angular(1/4), angular(2/4), angular(3/4), angular(4/4)]
runs-on: ubuntu-latest
name: ${{ matrix.CONSTEL }}
timeout-minutes: 60
steps:
- name: Pin Chrome version
run: |
CHROME_VERSION=117.0.5938.92
wget "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}-1_amd64.deb"
sudo dpkg -i "google-chrome-stable_${CHROME_VERSION}-1_amd64.deb"
- name: Get sources
uses: actions/checkout@v3
- name: Delete DX packages
run: sed -i '/23.2-next/d' ./package.json
- name: Download devextreme sources
uses: actions/download-artifact@v3
with:
name: devextreme-sources
- name: Unpack artifacts
run: 7z x node_modules.7z
- name: Prepare JS
run: npm run prepare-js
- name: Update bundles config
run: npx gulp update-config
- name: Run Web Server
run: |
python -m http.server 8080 &
python -m http.server 8081 &
python -m http.server 8082 &
python -m http.server 8083 &
- name: Get changed files
uses: ./.github/actions/get-changed-files
if: github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'force all tests')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path: changed-files.json
- name: Run TestCafe tests
env:
CHANGEDFILEINFOSPATH: ${{ github.workspace }}/changed-files.json
BROWSERS: chrome:headless --disable-partial-raster --disable-skia-runtime-opts --run-all-compositor-stages-before-draw --disable-new-content-rendering-timeout --disable-threaded-animation --disable-threaded-scrolling --disable-checker-imaging --disable-image-animation-resync --use-gl="swiftshader" --disable-features=PaintHolding --js-flags=--random-seed=2147483647 --font-render-hinting=none --disable-font-subpixel-positioning
#DEBUG: hammerhead:*,testcafe:*
CONCURRENCY: 4
TCQUARANTINE: true
CONSTEL: ${{ matrix.CONSTEL }}
# DISABLE_DEMO_TEST_SETTINGS: all # Uncomment to ignore all the visualtestrc.json settings
# DISABLE_DEMO_TEST_SETTINGS: ignore # Uncomment to ignore the `ignore` field
# DISABLE_DEMO_TEST_SETTINGS: comparison-options # Uncomment to ignore the `comparison-options` field
CI_ENV: true # The `ignore` field in the visualtestrc.json should be disabled when running test locally
run: npm run test-testcafe
- name: Get screenshots artifacts name
if: ${{ failure() }}
id: screenshotname
run: echo "value=$(echo "${{ matrix.CONSTEL }}" | grep -oP "^\w+")" >> $GITHUB_OUTPUT
- name: Copy screenshots artifacts
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: screenshots-${{ steps.screenshotname.outputs.value }}
path: ${{ github.workspace }}/testing/artifacts/compared-screenshots/*
if-no-files-found: ignore