-
Notifications
You must be signed in to change notification settings - Fork 1.2k
985 lines (867 loc) · 31.3 KB
/
build_and_test_workflow.yml
File metadata and controls
985 lines (867 loc) · 31.3 KB
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Build and test
# trigger on every PR for all branches.
on:
pull_request:
branches: ['**']
env:
OSD_OPTIMIZER_THEMES: v8light
TEST_BROWSER_HEADLESS: 1
CI: 1
GCS_UPLOAD_PREFIX: fake
TEST_OPENSEARCH_DASHBOARDS_HOST: localhost
TEST_OPENSEARCH_DASHBOARDS_PORT: 6610
TEST_OPENSEARCH_TRANSPORT_PORT: 9403
TEST_OPENSEARCH_PORT: 9400
OSD_SNAPSHOT_SKIP_VERIFY_CHECKSUM: true
OSD_OPTIMIZER_MAX_WORKERS: 8
NODE_OPTIONS: '--max-old-space-size=8192 --max-semi-space-size=64 --dns-result-order=ipv4first'
jobs:
changes:
name: Detect changes
runs-on: ubuntu-latest
timeout-minutes: 5
outputs:
code: ${{ steps.filter.outputs.code }}
steps:
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
id: filter
with:
filters: |
code:
- 'src/**'
- 'packages/**'
- 'plugins/**'
- 'test/**'
- 'scripts/**'
- 'examples/**'
- 'common/**'
- 'typings/**'
- 'config/**'
- 'tasks/**'
- 'utilities/**'
- 'cypress/**'
- 'package.json'
- 'yarn.lock'
- 'tsconfig*.json'
- '.browserslistrc'
- '.github/workflows/build_and_test_workflow.yml'
prepare-source:
name: Prepare source and warm cache
needs: [changes]
if: needs.changes.outputs.code == 'true'
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 1
filter: blob:none
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
- name: Setup Yarn
run: |
npm uninstall -g yarn
npm i -g yarn@1.22.10
yarn config set network-timeout 1000000 -g
- name: Configure Yarn Cache
run: echo "YARN_CACHE_LOCATION=$(yarn cache dir)" >> $GITHUB_ENV
- name: Restore Yarn Cache
id: yarn-cache
uses: actions/cache/restore@v4
with:
path: ${{ env.YARN_CACHE_LOCATION }}
key: yarn-Linux-${{ hashFiles('**/yarn.lock') }}
restore-keys: yarn-Linux-
# Only bootstrap + save on cache miss (yarn.lock changed).
# On cache hit, skip both — downstream jobs already have a warm cache.
- name: Run bootstrap
if: steps.yarn-cache.outputs.cache-hit != 'true'
shell: bash
run: |
for i in 1 2 3; do
yarn osd bootstrap && exit 0
echo "Bootstrap attempt $i failed, retrying in 10s..."
sleep 10
done
exit 1
- name: Save Yarn Cache
if: steps.yarn-cache.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
path: ${{ env.YARN_CACHE_LOCATION }}
key: yarn-Linux-${{ hashFiles('**/yarn.lock') }}
- name: Create source archive
run: |
tar czf /tmp/source-archive.tar.gz \
--exclude='./.git' \
--exclude='./node_modules' \
--exclude='./src/plugins/*/node_modules' \
--exclude='./packages/*/node_modules' \
--exclude='./test/*/plugins/*/node_modules' \
--exclude='./examples/*/node_modules' \
--exclude='./cypress' \
--exclude='./data' \
--exclude='./.github' --exclude='./coverage' \
--exclude='./.opensearch' --exclude='./opensearch-build' \
--exclude='**/target' \
.
mv /tmp/source-archive.tar.gz .
ls -lh source-archive.tar.gz
- name: Upload source archive
uses: actions/upload-artifact@v4
with:
name: source-archive
path: source-archive.tar.gz
retention-days: 1
if-no-files-found: error
prepare-windows-cache:
name: Warm Windows yarn cache
needs: [changes, prepare-source]
if: needs.changes.outputs.code == 'true'
runs-on: windows-latest
timeout-minutes: 30
steps:
- name: Configure git's autocrlf
run: |
git config --global core.autocrlf false
- name: Download source archive
uses: actions/download-artifact@v4
timeout-minutes: 5
with:
name: source-archive
- name: Extract source archive
shell: bash
run: |
tar xzf source-archive.tar.gz && rm source-archive.tar.gz
git init -q && git -c user.name=ci -c user.email=ci commit -q --allow-empty -m "source archive"
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
- name: Setup Yarn
run: |
npm uninstall -g yarn
npm i -g yarn@1.22.10
yarn config set network-timeout 1000000 -g
- name: Configure Yarn Cache
shell: bash
run: echo "YARN_CACHE_LOCATION=$(yarn cache dir)" >> $GITHUB_ENV
- name: Restore Yarn Cache
id: yarn-cache
uses: actions/cache/restore@v4
with:
path: ${{ env.YARN_CACHE_LOCATION }}
key: yarn-Windows-${{ hashFiles('**/yarn.lock') }}
restore-keys: yarn-Windows-
# Only bootstrap + save on cache miss (yarn.lock changed).
# On cache hit, downstream Windows jobs already have a warm cache.
- name: Run bootstrap
if: steps.yarn-cache.outputs.cache-hit != 'true'
shell: bash
run: |
for i in 1 2 3; do
yarn osd bootstrap && exit 0
echo "Bootstrap attempt $i failed, retrying in 10s..."
sleep 10
done
exit 1
- name: Save Yarn Cache
if: steps.yarn-cache.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
path: ${{ env.YARN_CACHE_LOCATION }}
key: yarn-Windows-${{ hashFiles('**/yarn.lock') }}
build-test:
name: Build and Verify on ${{ matrix.name }} (ciGroup${{ matrix.group }})
needs: [changes, prepare-source, prepare-windows-cache]
if: needs.changes.outputs.code == 'true'
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
group: [1, 2, 3, 4, 5]
include:
- os: ubuntu-latest
name: Linux
- os: windows-latest
name: Windows
runs-on: ${{ matrix.os }}
timeout-minutes: 60
env:
# Override just OSD_OPTIMIZER_MAX_WORKERS for ciGroup1 because it contains a test that checks number of workers
OSD_OPTIMIZER_MAX_WORKERS: ${{ matrix.group != 1 && 8 || '' }}
steps:
- name: Configure git's autocrlf (Windows only)
if: matrix.os == 'windows-latest'
run: |
git config --global core.autocrlf false
- name: Configure pagefile size (Windows only)
if: matrix.os == 'windows-latest'
uses: al-cheb/configure-pagefile-action@v1.3
with:
minimum-size: 16GB
maximum-size: 64GB
disk-root: 'C:'
- name: Download source archive
uses: actions/download-artifact@v4
timeout-minutes: 5
with:
name: source-archive
- name: Extract source archive
shell: bash
run: |
tar xzf source-archive.tar.gz && rm source-archive.tar.gz
git init -q && git -c user.name=ci -c user.email=ci commit -q --allow-empty -m "source archive"
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'adopt'
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
- name: Setup Yarn
run: |
npm uninstall -g yarn
npm i -g yarn@1.22.10
yarn config set network-timeout 1000000 -g
- name: Configure Yarn Cache
shell: bash
run: echo "YARN_CACHE_LOCATION=$(yarn cache dir)" >> $GITHUB_ENV
# Linux: restore-only (prepare-source handles the save)
- name: Restore Yarn Cache (Linux)
if: matrix.os != 'windows-latest'
uses: actions/cache/restore@v4
with:
path: ${{ env.YARN_CACHE_LOCATION }}
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-${{ runner.os }}-
# Windows: restore-only (prepare-windows-cache handles the save)
- name: Restore Yarn Cache (Windows)
if: matrix.os == 'windows-latest'
uses: actions/cache/restore@v4
with:
path: ${{ env.YARN_CACHE_LOCATION }}
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-${{ runner.os }}-
- name: Run bootstrap (Linux)
if: matrix.os != 'windows-latest'
shell: bash
run: |
for i in 1 2 3; do
yarn osd bootstrap && exit 0
echo "Bootstrap attempt $i failed, retrying in 10s..."
sleep 10
done
exit 1
- name: Run bootstrap (Windows)
if: matrix.os == 'windows-latest'
shell: bash
run: |
for i in 1 2 3; do
yarn osd bootstrap && exit 0
echo "Bootstrap attempt $i failed, retrying in 10s..."
sleep 10
done
exit 1
# Linux: include coverage for Codecov reporting.
# Windows: skip coverage to avoid ~2x overhead; Linux results are sufficient for coverage.
- name: Run unit tests group ${{ matrix.group }} with coverage (Linux)
if: matrix.os != 'windows-latest'
id: unit-tests
run: node scripts/jest --ci --colors --runInBand --coverage --ci-group=${{ matrix.group }}
- name: Run unit tests group ${{ matrix.group }} (Windows)
if: matrix.os == 'windows-latest'
id: unit-tests-windows
run: node scripts/jest --ci --colors --runInBand --ci-group=${{ matrix.group }}
- name: Run mocha tests with coverage
# ciGroup 1 of unit-tests is shorter
if: matrix.group == 1
id: mocha-tests
run: yarn test:mocha:coverage
- name: Upload Code Coverage
id: upload-code-coverage
if: matrix.os != 'windows-latest'
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./target/opensearch-dashboards-coverage
flags: ${{ matrix.name }}_${{ matrix.group }}
# Upload JUnit XML so the reports are accessible to humans and AI agents via
# `gh run download -n junit-jest-group<N>-<OS>`. Retention is 7 days (vs the
# default 1 day used for screenshot artifacts) to give teams time to triage.
- name: Upload JUnit test results
if: always()
uses: actions/upload-artifact@v4
with:
name: junit-jest-group${{ matrix.group }}-${{ matrix.name }}
path: target/junit/**/*.xml
retention-days: 7
if-no-files-found: ignore
overwrite: true
# Write a human- and AI-readable Markdown summary of any failing tests
# to the GitHub Actions step summary panel.
- name: Generate test failure summary
if: failure()
shell: bash
run: node scripts/summarize_jest_failures.js
build-plugins-artifact:
name: Build plugin bundles
needs: [changes, prepare-source]
if: needs.changes.outputs.code == 'true'
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Download source archive
uses: actions/download-artifact@v4
timeout-minutes: 5
with:
name: source-archive
- name: Extract source archive
shell: bash
run: |
tar xzf source-archive.tar.gz && rm source-archive.tar.gz
git init -q && git -c user.name=ci -c user.email=ci commit -q --allow-empty -m "source archive"
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
- name: Setup Yarn
run: |
npm uninstall -g yarn
npm i -g yarn@1.22.10
yarn config set network-timeout 1000000 -g
- name: Configure Yarn Cache
run: echo "YARN_CACHE_LOCATION=$(yarn cache dir)" >> $GITHUB_ENV
- name: Restore Yarn Cache
uses: actions/cache/restore@v4
with:
path: ${{ env.YARN_CACHE_LOCATION }}
key: yarn-Linux-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-Linux-
- name: Run bootstrap
shell: bash
run: |
for i in 1 2 3; do
yarn osd bootstrap && exit 0
echo "Bootstrap attempt $i failed, retrying in 10s..."
sleep 10
done
exit 1
- name: Build plugins
run: node scripts/build_opensearch_dashboards_platform_plugins --no-examples --workers 10
- name: Upload plugin bundles
uses: actions/upload-artifact@v4
with:
name: plugin-bundles
path: |
src/core/target/public
src/plugins/*/target/public
packages/*/target/public
retention-days: 1
if-no-files-found: error
integration-tests:
name: Run integration tests on ${{ matrix.name }}
needs: [changes, prepare-source, prepare-windows-cache]
if: needs.changes.outputs.code == 'true'
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
include:
- os: ubuntu-latest
name: Linux
- os: windows-latest
name: Windows
runs-on: ${{ matrix.os }}
timeout-minutes: 45
env:
# Unset OSD_OPTIMIZER_MAX_WORKERS so integration tests that check worker count
# see the value passed in code (maxWorkerCount: 1) rather than the CI override
OSD_OPTIMIZER_MAX_WORKERS: ''
steps:
- name: Configure git's autocrlf (Windows only)
if: matrix.os == 'windows-latest'
run: |
git config --global core.autocrlf false
- name: Configure pagefile size (Windows only)
if: matrix.os == 'windows-latest'
uses: al-cheb/configure-pagefile-action@v1.3
with:
minimum-size: 16GB
maximum-size: 64GB
disk-root: 'C:'
- name: Download source archive
uses: actions/download-artifact@v4
timeout-minutes: 5
with:
name: source-archive
- name: Extract source archive
shell: bash
run: |
tar xzf source-archive.tar.gz && rm source-archive.tar.gz
git init -q && git -c user.name=ci -c user.email=ci commit -q --allow-empty -m "source archive"
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
- name: Setup Yarn
run: |
npm uninstall -g yarn
npm i -g yarn@1.22.10
yarn config set network-timeout 1000000 -g
- name: Configure Yarn Cache
shell: bash
run: echo "YARN_CACHE_LOCATION=$(yarn cache dir)" >> $GITHUB_ENV
# Linux: restore-only (prepare-source handles the save)
- name: Restore Yarn Cache (Linux)
if: matrix.os != 'windows-latest'
uses: actions/cache/restore@v4
with:
path: ${{ env.YARN_CACHE_LOCATION }}
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-${{ runner.os }}-
# Windows: restore-only (prepare-windows-cache handles the save)
- name: Restore Yarn Cache (Windows)
if: matrix.os == 'windows-latest'
uses: actions/cache/restore@v4
with:
path: ${{ env.YARN_CACHE_LOCATION }}
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-${{ runner.os }}-
- name: Run bootstrap (Linux)
if: matrix.os != 'windows-latest'
shell: bash
run: |
for i in 1 2 3; do
yarn osd bootstrap && exit 0
echo "Bootstrap attempt $i failed, retrying in 10s..."
sleep 10
done
exit 1
- name: Run bootstrap (Windows)
if: matrix.os == 'windows-latest'
shell: bash
run: |
for i in 1 2 3; do
yarn osd bootstrap && exit 0
echo "Bootstrap attempt $i failed, retrying in 10s..."
sleep 10
done
exit 1
- name: Run integration tests
shell: bash
run: yarn test:jest_integration:ci
- name: Upload JUnit test results
if: always()
uses: actions/upload-artifact@v4
with:
name: junit-jest-integration-${{ matrix.name }}
path: target/junit/**/*.xml
retention-days: 7
if-no-files-found: ignore
overwrite: true
lint-and-validate:
name: Lint and validate
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 1
filter: blob:none
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
- name: Setup Yarn
run: |
npm uninstall -g yarn
npm i -g yarn@1.22.10
yarn config set network-timeout 1000000 -g
- name: Configure Yarn Cache
run: echo "YARN_CACHE_LOCATION=$(yarn cache dir)" >> $GITHUB_ENV
- name: Restore Yarn Cache
uses: actions/cache/restore@v4
with:
path: ${{ env.YARN_CACHE_LOCATION }}
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-${{ runner.os }}-
- name: Run bootstrap
shell: bash
run: |
for i in 1 2 3; do
yarn osd bootstrap && exit 0
echo "Bootstrap attempt $i failed, retrying in 10s..."
sleep 10
done
exit 1
- name: Check for yarn.lock changes
run: |
if [[ `git status --porcelain yarn.lock` ]]; then
echo -e "\033[31mThe yarn.lock file is out of sync!\033[0m"
git diff
exit 1
fi
- name: Generate dev docs
run: yarn docs:generateDevDocs
- name: Check for dev docs changes
run: |
if [[ `git status --porcelain docs/_sidebar.md` ]]; then
echo -e "\033[31mThe dev docs are out of sync; run yarn docs:generateDevDocs and amend the PR.\033[0m"
git diff
exit 1
fi
- name: Run TypeScript error check
id: typeScript-error-check
run: yarn typecheck
- name: Run linter
id: linter
run: yarn lint
- name: Validate NOTICE file
id: notice-validate
run: yarn notice:validate
- name: Validate licenses
id: i18n-licenses
run: yarn checkLicenses
- name: Check i18n
id: i18n-check
run: yarn i18n:check
functional-tests:
name: Run functional tests on ${{ matrix.name }} (ciGroup${{ matrix.group }})
needs: [changes, prepare-source, prepare-windows-cache, build-plugins-artifact]
if: needs.changes.outputs.code == 'true'
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
group: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
include:
- os: ubuntu-latest
name: Linux
- os: windows-latest
name: Windows
exclude:
# Windows FTR coverage is provided by ciGroup1 (smoke test that OSD starts
# and serves on Windows) and the Windows build artifact job. ciGroup2-13
# run browser rendering tests which are platform-agnostic and fully covered
# by Linux FTR. Removing them saves ~13 Windows jobs (~6-57 min each) per run.
- { os: windows-latest, group: 2 }
- { os: windows-latest, group: 3 }
- { os: windows-latest, group: 4 }
- { os: windows-latest, group: 5 }
- { os: windows-latest, group: 6 }
- { os: windows-latest, group: 7 }
- { os: windows-latest, group: 8 }
- { os: windows-latest, group: 9 }
- { os: windows-latest, group: 10 }
- { os: windows-latest, group: 11 }
- { os: windows-latest, group: 12 }
- { os: windows-latest, group: 13 }
- { os: windows-latest, group: 14 }
runs-on: ${{ matrix.os }}
timeout-minutes: 90
steps:
- run: echo Running functional tests for ciGroup${{ matrix.group }}
- name: Configure git's autocrlf (Windows only)
if: matrix.os == 'windows-latest'
run: |
git config --global core.autocrlf false
- name: Configure pagefile size (Windows only)
if: matrix.os == 'windows-latest'
uses: al-cheb/configure-pagefile-action@v1.3
with:
minimum-size: 16GB
maximum-size: 64GB
disk-root: 'C:'
- name: Download source archive
uses: actions/download-artifact@v4
timeout-minutes: 5
with:
name: source-archive
- name: Extract source archive
shell: bash
run: |
tar xzf source-archive.tar.gz && rm source-archive.tar.gz
git init -q && git -c user.name=ci -c user.email=ci commit -q --allow-empty -m "source archive"
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'adopt'
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
- name: Setup Yarn
run: |
npm uninstall -g yarn
npm i -g yarn@1.22.10
yarn config set network-timeout 1000000 -g
- name: Configure Yarn Cache
shell: bash
run: echo "YARN_CACHE_LOCATION=$(yarn cache dir)" >> $GITHUB_ENV
# Linux: restore-only (prepare-source handles the save)
- name: Restore Yarn Cache (Linux)
if: matrix.os != 'windows-latest'
uses: actions/cache/restore@v4
with:
path: ${{ env.YARN_CACHE_LOCATION }}
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-${{ runner.os }}-
# Windows: restore-only (prepare-windows-cache handles the save)
- name: Restore Yarn Cache (Windows)
if: matrix.os == 'windows-latest'
uses: actions/cache/restore@v4
with:
path: ${{ env.YARN_CACHE_LOCATION }}
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-${{ runner.os }}-
# Lock Chrome version until ChromeDriver's release pipeline is fixed
- name: Download Chrome
id: download-chrome
uses: abhi1693/setup-browser@v0.3.5
with:
browser: chrome
# v122
version: 1250586
- name: Setup Chrome (Linux)
if: matrix.os != 'windows-latest'
run: |
sudo rm -rf /usr/bin/google-chrome /opt/google/chrome
sudo ln -s ${{steps.download-chrome.outputs.path}}/${{steps.download-chrome.outputs.binary}} /usr/bin/google-chrome
- name: Setup Chrome (Windows)
if: matrix.os == 'windows-latest'
run: |
New-Item -Force -Type Directory "$Env:Programfiles/Google/Chrome/Application"
Remove-Item -Recurse -Force "$Env:Programfiles/Google/Chrome/Application/*"
Copy-Item -Force -Recurse "${{steps.download-chrome.outputs.path}}/*" "$Env:Programfiles/Google/Chrome/Application"
- name: Setup chromedriver
run: node scripts/upgrade_chromedriver.js
- name: Run bootstrap (Linux)
if: matrix.os != 'windows-latest'
shell: bash
run: |
for i in 1 2 3; do
yarn osd bootstrap && exit 0
echo "Bootstrap attempt $i failed, retrying in 10s..."
sleep 10
done
exit 1
- name: Run bootstrap (Windows)
if: matrix.os == 'windows-latest'
shell: bash
run: |
for i in 1 2 3; do
yarn osd bootstrap && exit 0
echo "Bootstrap attempt $i failed, retrying in 10s..."
sleep 10
done
exit 1
- name: Download plugin bundles
uses: actions/download-artifact@v4
timeout-minutes: 5
with:
name: plugin-bundles
- name: Run CI test group ${{ matrix.group }}
id: ftr-tests
run: node scripts/functional_tests.js --config test/functional/config.js --include ciGroup${{ matrix.group }}
env:
CI_GROUP: ciGroup${{ matrix.group }}
CI_PARALLEL_PROCESS_NUMBER: ciGroup${{ matrix.group }}
JOB: ci${{ matrix.group }}
CACHE_DIR: ciGroup${{ matrix.group }}
- uses: actions/upload-artifact@v4
if: failure()
with:
name: failure-artifacts-ci${{ matrix.group }}
path: |
test/*/failure_debug/
test/*/screenshots/
overwrite: true
plugin-functional-tests:
name: Run plugin functional tests on ${{ matrix.name }}
needs: [changes, prepare-source, prepare-windows-cache]
if: needs.changes.outputs.code == 'true'
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
include:
- os: ubuntu-latest
name: Linux
- os: windows-latest
name: Windows
runs-on: ${{ matrix.os }}
steps:
- run: echo Running plugin functional tests
- name: Configure git's autocrlf (Windows only)
if: matrix.os == 'windows-latest'
run: |
git config --global core.autocrlf false
- name: Configure pagefile size (Windows only)
if: matrix.os == 'windows-latest'
uses: al-cheb/configure-pagefile-action@v1.3
with:
minimum-size: 16GB
maximum-size: 64GB
disk-root: 'C:'
- name: Download source archive
uses: actions/download-artifact@v4
timeout-minutes: 5
with:
name: source-archive
- name: Extract source archive
shell: bash
run: |
tar xzf source-archive.tar.gz && rm source-archive.tar.gz
git init -q && git -c user.name=ci -c user.email=ci commit -q --allow-empty -m "source archive"
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'adopt'
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
- name: Setup Yarn
run: |
npm uninstall -g yarn
npm i -g yarn@1.22.10
yarn config set network-timeout 1000000 -g
- name: Configure Yarn Cache
shell: bash
run: echo "YARN_CACHE_LOCATION=$(yarn cache dir)" >> $GITHUB_ENV
# Linux: restore-only (prepare-source handles the save)
- name: Restore Yarn Cache (Linux)
if: matrix.os != 'windows-latest'
uses: actions/cache/restore@v4
with:
path: ${{ env.YARN_CACHE_LOCATION }}
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-${{ runner.os }}-
# Windows: restore-only (prepare-windows-cache handles the save)
- name: Restore Yarn Cache (Windows)
if: matrix.os == 'windows-latest'
uses: actions/cache/restore@v4
with:
path: ${{ env.YARN_CACHE_LOCATION }}
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-${{ runner.os }}-
# Lock Chrome version until ChromeDriver's release pipeline is fixed
- name: Download Chrome
id: download-chrome
uses: abhi1693/setup-browser@v0.3.5
with:
browser: chrome
# v122
version: 1250586
- name: Setup Chrome (Linux)
if: matrix.os != 'windows-latest'
run: |
sudo rm -rf /usr/bin/google-chrome /opt/google/chrome
sudo ln -s ${{steps.download-chrome.outputs.path}}/${{steps.download-chrome.outputs.binary}} /usr/bin/google-chrome
- name: Setup Chrome (Windows)
if: matrix.os == 'windows-latest'
run: |
New-Item -Force -Type Directory "$Env:Programfiles/Google/Chrome/Application"
Remove-Item -Recurse -Force "$Env:Programfiles/Google/Chrome/Application/*"
Copy-Item -Force -Recurse "${{steps.download-chrome.outputs.path}}/*" "$Env:Programfiles/Google/Chrome/Application"
- name: Setup chromedriver
run: node scripts/upgrade_chromedriver.js
- name: Run bootstrap (Linux)
if: matrix.os != 'windows-latest'
shell: bash
run: |
for i in 1 2 3; do
yarn osd bootstrap && exit 0
echo "Bootstrap attempt $i failed, retrying in 10s..."
sleep 10
done
exit 1
- name: Run bootstrap (Windows)
if: matrix.os == 'windows-latest'
shell: bash
run: |
for i in 1 2 3; do
yarn osd bootstrap && exit 0
echo "Bootstrap attempt $i failed, retrying in 10s..."
sleep 10
done
exit 1
- name: Build plugins
run: node scripts/build_opensearch_dashboards_platform_plugins --no-examples --workers 10 --scan-dir "./test/plugin_functional/plugins"
- name: Run functional plugin tests
id: plugin-ftr-tests
run: node scripts/functional_tests.js --config test/plugin_functional/config.ts
- uses: actions/upload-artifact@v4
if: failure()
with:
name: failure-artifacts-plugin-functional-${{ matrix.os }}
path: |
test/*/failure_debug/
test/*/screenshots/
overwrite: true
merge-gate:
name: Merge Gate
if: always()
needs:
- changes
- build-test
- build-plugins-artifact
- integration-tests
- lint-and-validate
- functional-tests
- plugin-functional-tests
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Evaluate results
run: |
results=( \
"${{ needs.lint-and-validate.result }}" \
"${{ needs.build-test.result }}" \
"${{ needs.integration-tests.result }}" \
"${{ needs.functional-tests.result }}" \
"${{ needs.build-plugins-artifact.result }}" \
"${{ needs.plugin-functional-tests.result }}" \
)
for r in "${results[@]}"; do
if [[ "$r" == "failure" || "$r" == "cancelled" ]]; then
echo "❌ A required job failed or was cancelled: $r"
exit 1
fi
done
echo "✅ All checks passed (or were correctly skipped for non-code changes)"